22 lines
593 B
YAML
22 lines
593 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
org-todo-pwa:
|
|
image: org-todo-pwa
|
|
build: .
|
|
ports:
|
|
- "3044:3044"
|
|
volumes:
|
|
- /srv/swarm/org-todo-pwa/data:/data
|
|
user: "1000:1000"
|
|
environment:
|
|
- DEBUG=app
|
|
- AUTH_USERNAME=fredrik
|
|
- AUTH_PASSWORD=apa
|
|
deploy:
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.plan.tls=true"
|
|
- "traefik.http.routers.plan.tls.certresolver=myhttpchallenge"
|
|
- "traefik.http.routers.plan.rule=Host(`todo.casablanca.wahlberg.se`)"
|
|
- "traefik.http.routers.plan.entrypoints=websecure" |