Добавлен конфиг для docker-compose

This commit is contained in:
2025-05-14 19:04:51 +02:00
parent 89303be680
commit dd143c94f8
2 changed files with 55 additions and 0 deletions

35
docker-compose.yml Normal file
View File

@@ -0,0 +1,35 @@
version: '3'
services:
n8n:
image: docker.n8n.io/n8nio/n8n
restart: unless-stopped
volumes:
- n8n_data:/home/node/.n8n
networks:
- n8n_network
environment:
- N8N_HOST=n8n
- N8N_PORT=5678
- N8N_PROTOCOL=http
angie:
image: angie/angie:latest
restart: unless-stopped
ports:
- "80:80"
- "443:443"
volumes:
- ./angie.conf:/etc/angie/conf.d/n8n.conf:ro
- ./acme:/var/lib/angie/acme
networks:
- n8n_network
depends_on:
- n8n
volumes:
n8n_data:
networks:
n8n_network:
driver: bridge