24 lines
740 B
YAML
24 lines
740 B
YAML
|
version: '3'
|
||
|
|
||
|
services:
|
||
|
histoiredunpied:
|
||
|
container_name: ${NAME}
|
||
|
build: .
|
||
|
image: ${NAME}
|
||
|
environment:
|
||
|
- TZ=Europe/Paris
|
||
|
labels:
|
||
|
traefik.enable: "true"
|
||
|
traefik.docker.network: "traefik"
|
||
|
traefik.http.routers.histoiredunpied.rule: "Host(`${NAME}.lamelio.fr`)"
|
||
|
traefik.http.routers.histoiredunpied.entrypoints: "web"
|
||
|
traefik.http.routers.histoiredunpied.middlewares: "redirect-https@docker"
|
||
|
traefik.http.routers.histoiredunpied-https.rule: "Host(`${NAME}.lamelio.fr`)"
|
||
|
traefik.http.routers.histoiredunpied-https.entrypoints: "websecure"
|
||
|
traefik.http.routers.histoiredunpied-https.tls.certResolver: "letsencrypt"
|
||
|
|
||
|
networks:
|
||
|
default:
|
||
|
external:
|
||
|
name: traefik
|