mirror of
https://github.com/davestephens/ansible-nas
synced 2024-12-27 20:13:09 +00:00
30 lines
782 B
YAML
30 lines
782 B
YAML
|
---
|
||
|
- name: Create n8n Directory
|
||
|
file:
|
||
|
path: "{{ item }}"
|
||
|
state: directory
|
||
|
with_items:
|
||
|
- "{{ n8n_data_directory }}"
|
||
|
|
||
|
- name: n8n Docker Container
|
||
|
docker_container:
|
||
|
name: n8n
|
||
|
image: n8nio/n8n
|
||
|
pull: true
|
||
|
ports:
|
||
|
- "{{ n8n_port }}:5678"
|
||
|
volumes:
|
||
|
- "{{ n8n_data_directory }}:/home/node/.n8n:rw"
|
||
|
- "/etc/timezone:/etc/timezone:ro"
|
||
|
restart_policy: unless-stopped
|
||
|
memory: 1g
|
||
|
env:
|
||
|
N8N_BASIC_AUTH_ACTIVE: "true"
|
||
|
N8N_BASIC_AUTH_USER: "{{ n8n_basic_auth_user }}"
|
||
|
N8N_BASIC_AUTH_PASSWORD: "{{ n8n_basic_auth_password }}"
|
||
|
labels:
|
||
|
traefik.backend: "n8n"
|
||
|
traefik.frontend.rule: "Host:n8n.{{ ansible_nas_domain }}"
|
||
|
traefik.enable: "{{ n8n_available_externally }}"
|
||
|
traefik.port: "5678"
|