22 lines
513 B
YAML
22 lines
513 B
YAML
version: '3.7'
|
|
services:
|
|
nginx:
|
|
image: nginx:latest
|
|
restart: always
|
|
|
|
networks:
|
|
- traefik_web
|
|
- default
|
|
labels:
|
|
- traefik.enable=true
|
|
- traefik.docker.network=traefik_web
|
|
- traefik.http.routers.${ROUTER_NAME}-router.entrypoints=${ENTRYPOINT}
|
|
- traefik.http.routers.${ROUTER_NAME}-router.rule=Host(`${APP_HOST}`)
|
|
- traefik.http.routers.${ROUTER_NAME}-router.tls=true
|
|
volumes:
|
|
db_data:
|
|
|
|
networks:
|
|
traefik_web:
|
|
external: true
|