hexabot/docker/docker-compose.nginx.yml

18 lines
275 B
YAML
Raw Normal View History

2024-09-10 09:50:11 +00:00
version: "3.8"
services:
nginx:
container_name: nginx
image: nginx:latest
restart: unless-stopped
2024-09-13 07:22:05 +00:00
env_file: .env
2024-09-10 09:50:11 +00:00
networks:
- app-network
ports:
- 80:80
- 443:443
depends_on:
- api
- hexabot-frontend
- widget