Update networks

This commit is contained in:
AiratTop
2025-10-19 18:34:10 +03:00
parent f47ab62bc2
commit d0070f9a57

View File

@@ -63,7 +63,8 @@ services:
container_name: caddy
hostname: caddy
image: caddy:latest
networks: ['shared_network']
networks:
- shared_network
restart: always
ports:
- '80:80'
@@ -79,7 +80,8 @@ services:
container_name: n8n-redis
hostname: n8n-redis
image: redis:alpine
networks: ['shared_network']
networks:
- shared_network
restart: always
healthcheck:
test: [ "CMD", "redis-cli", "--raw", "incr", "ping" ]
@@ -97,7 +99,8 @@ services:
container_name: n8n-psql
hostname: n8n-psql
image: postgres:17
networks: ['shared_network']
networks:
- shared_network
restart: always
environment:
POSTGRES_USER: n8n
@@ -122,7 +125,8 @@ services:
container_name: n8n-master
hostname: n8n-master
image: docker.n8n.io/n8nio/n8n:${N8N_VERSION:-latest}
networks: ['shared_network']
networks:
- shared_network
restart: always
ports:
- '5678:5678'
@@ -137,7 +141,8 @@ services:
condition: service_healthy
n8n-worker:
image: docker.n8n.io/n8nio/n8n:${N8N_VERSION:-latest}
networks: ['shared_network']
networks:
- shared_network
restart: always
environment: *n8n-common-env
command: worker --concurrency=10