mirror of
https://github.com/Viren070/docker-compose-template.git
synced 2025-12-01 23:17:00 +01:00
19 lines
794 B
YAML
19 lines
794 B
YAML
services:
|
|
stremio-account-bootstrapper:
|
|
build:
|
|
context: https://github.com/DryKillLogic/stremio-account-bootstrapper.git
|
|
dockerfile: Dockerfile
|
|
container_name: stremio-account-bootstrapper
|
|
restart: unless-stopped
|
|
expose:
|
|
- 80
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.stremio-account-bootstrapper.rule=Host(`${STREMIO_ACCOUNT_BOOTSTRAPPER_HOSTNAME?}`)"
|
|
- "traefik.http.routers.stremio-account-bootstrapper.entrypoints=websecure"
|
|
- "traefik.http.routers.stremio-account-bootstrapper.tls.certresolver=letsencrypt"
|
|
- "traefik.http.routers.stremio-account-bootstrapper.middlewares=authelia@docker"
|
|
- "com.centurylinklabs.watchtower.enable=false"
|
|
profiles:
|
|
- stremio-account-bootstrapper
|
|
- all |