mirror of
https://github.com/hexastack/hexabot
synced 2024-11-22 17:48:21 +00:00
17 lines
260 B
YAML
17 lines
260 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
nginx:
|
|
container_name: nginx
|
|
image: nginx:latest
|
|
restart: unless-stopped
|
|
env_file: .env
|
|
networks:
|
|
- app-network
|
|
ports:
|
|
- 80:80
|
|
- 443:443
|
|
depends_on:
|
|
- api
|
|
- hexabot-frontend
|