hexabot/docker/docker-compose.nginx.yml
2024-09-10 10:50:11 +01:00

20 lines
350 B
YAML

version: "3.8"
services:
nginx:
container_name: nginx
image: nginx:latest
restart: unless-stopped
networks:
- app-network
ports:
- 80:80
- 443:443
volumes:
- ./nginx/unsecure/:/etc/nginx:ro
- /etc/localtime:/etc/localtime:ro
depends_on:
- api
- hexabot-frontend
- widget