Compare commits

...

3 Commits
main ... jfa

Author SHA1 Message Date
3wc a2bc9303c8 Merge branch 'main' into jfa 2022-10-17 15:48:51 -04:00
3wc 028146d9b8 Update .env.sample for jfa 2022-08-19 17:11:13 -06:00
3wc 8a5e53e04d Add initial compose.jfa.yml 2022-06-14 11:29:17 +01:00
2 changed files with 33 additions and 0 deletions

View File

@ -9,3 +9,6 @@ LETS_ENCRYPT_ENV=production
# Set to an existing path on the host, and define a path inside the container
EXTRA_VOLUME=/dev/null:/tmp/.dummy
COMPOSE_FILE="compose.yml"
#COMPOSE_FILE="$COMPOSE_FILE:compose.jfa.yml"

30
compose.jfa.yml Normal file
View File

@ -0,0 +1,30 @@
---
version: "3.8"
services:
accounts:
image: hrfee/jfa-go
entrypoint: ["/opt/jfa-go/jfa-go", "-data", "/data", "-debug"]
networks:
- proxy
volumes:
# - jellyfin_config:/jf
- jfa:/data
deploy:
restart_policy:
condition: on-failure
labels:
- "traefik.enable=true"
- "traefik.http.services.${STACK_NAME}_admin.loadbalancer.server.port=8056"
- "traefik.http.routers.${STACK_NAME}_admin.rule=Host(`admin.${DOMAIN}`)"
- "traefik.http.routers.${STACK_NAME}_admin.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}_admin.tls.certresolver=${LETS_ENCRYPT_ENV}"
networks:
proxy:
external: true
volumes:
jfa:
jellyfin_config:
external: true