Evo.Gateway/docker-compose.off.yml
2024-02-15 21:41:42 +03:00

25 lines
522 B
YAML

version: '3'
services:
server:
extends:
file: docker-compose.traefik.yml
service: server
image: nginx:alpine
environment:
- APPLICATION=${APPLICATION}
volumes:
- ./config/nginx.off.conf:/etc/nginx/templates/default.conf.template
- ./config/include:/etc/nginx/include
- ./config/http/nginx.conf:/etc/nginx/nginx.conf
restart: always
networks:
- app_network
networks:
app_network:
external: true
name: ${NETWORK_NAME}
web:
external: true