This commit is contained in:
Brieuc Dubois 2023-12-23 20:53:07 +01:00
parent 88b8adb21f
commit 24ed562c32
3 changed files with 30 additions and 0 deletions

3
.gitmodules vendored
View File

@ -4,3 +4,6 @@
[submodule "builds/focalboard"]
path = builds/focalboard
url = git@github.com:BhasherBEL/focalboard.git
[submodule "builds/trakr"]
path = builds/trakr
url = git.bhasher.com:Bhasher/trakr.git

1
builds/trakr Submodule

@ -0,0 +1 @@
Subproject commit 3fe367ef38a0e9a548c3c21788d291d2d68f17ab

View File

@ -0,0 +1,26 @@
services:
trakr:
container_name: trakr
image: registry.bhasher.com/trakr:dev
restart: unless-stopped
environment:
- TZ=Europe/Paris
volumes:
- $DATA/trakr:/data
labels:
- "traefik.enable=true"
- "traefik.http.routers.trakr.rule=Host(`trakr.bhasher.com`)"
- "traefik.http.routers.trakr.service=trakrpublic"
- "traefik.http.services.trakr.loadbalancer.server.port=80"
- "traefik.http.routers.trakr.tls=true"
- "traefik.http.routers.trakr.tls.certresolver=http"
- "traefik.http.routers.trakr.entrypoints=internalsecure"
- "traefik.http.routers.trakr.middlewares=authelia@docker"
- "traefik.http.routers.trakrpublic.rule=Host(`trakr.bhasher.com`) && PathPrefix(`/p/`)"
- "traefik.http.routers.trakrpublic.service=trakrpublic"
- "traefik.http.services.trakrpublic.loadbalancer.server.port=80"
- "traefik.http.routers.trakrpublic.tls=true"
- "traefik.http.routers.trakrpublic.tls.certresolver=http"
- "traefik.http.routers.trakrpublic.entrypoints=internalsecure,externalsecure"
networks:
- external