nginx-proxy/compose.yml

34 lines
571 B
YAML
Raw Normal View History

2023-05-07 11:03:39 +00:00
services:
router:
image: nginx-proxy
ports:
- 80:80
- 443:443
expose:
- 80
- 443
networks:
- penahub_frontend
- default
depends_on:
- hub
- docs
hub:
image: hub_front
networks:
- penahub_frontend
hostname: hub
restart: always
container_name: hub_front
docs:
image: tmplategen_front
networks:
- penahub_frontend
hostname: docs
container_name: tmplategen_front
networks:
penahub_frontend:
driver: bridge
attachable: true
internal: true