Docker: add app_network

This commit is contained in:
Chika 2022-11-30 09:35:53 +03:00
parent 1954dc0a86
commit 83221be311

View File

@ -37,14 +37,17 @@ services:
ALLOW_EMPTY_PASSWORD: 'yes'
networks:
- auth_network
server:
auth_server:
image: nginx
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf
restart: always
networks:
- auth_network
- ${NETWORK_NAME}
- app_network
networks:
auth_network:
app_network:
external: true
name: ${NETWORK_NAME}