mirror of
https://github.com/hexastack/hexabot
synced 2024-11-25 13:27:58 +00:00
20 lines
350 B
YAML
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
|