19 lines
592 B
YAML
19 lines
592 B
YAML
services:
|
|
it-tools:
|
|
extends:
|
|
file: ${TEMPLATES_PATH}
|
|
service: default
|
|
image: corentinth/it-tools:latest
|
|
container_name: it-tools
|
|
ports:
|
|
- '4007:80'
|
|
labels:
|
|
# Watchtower
|
|
- "com.centurylinklabs.watchtower.enable=true"
|
|
# Traefik
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.it-tools.rule=Host(`it-tools.${LOCAL_DOMAIN}`)"
|
|
- "traefik.http.routers.it-tools.entrypoints=https"
|
|
- "traefik.http.routers.it-tools.tls=true"
|
|
# Middlewares
|
|
- "traefik.http.routers.it-tools.middlewares=crowdsec-bouncer@file" |