1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-08-05 13:15:18 +02:00

Merge branch 'main' into development

This commit is contained in:
Sean Morley 2024-11-26 22:11:40 -05:00 committed by GitHub
commit 02f534662b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 26 additions and 5 deletions

View file

@ -1,6 +1,6 @@
--- ---
name: Bug report name: Bug report
about: "Detailed bug reports help me diagnose and fix bugs quicker! Thanks!" about: Detailed bug reports help me diagnose and fix bugs quicker! Thanks!
title: "[BUG]" title: "[BUG]"
labels: bug labels: bug
assignees: '' assignees: ''

View file

@ -0,0 +1,15 @@
---
name: Deployment Issue
about: Request help deploying AdventureLog on your machine. The more details, the
better I can help!
title: "[DEPLOYMENT]"
labels: deployment
assignees: ''
---
## Explain your issue
## Provide an **obfuscated** `docker-compose.yml`
## Provide any necessary logs from the containers and browser

View file

@ -38,10 +38,10 @@ services:
BODY_SIZE_LIMIT: "100000" BODY_SIZE_LIMIT: "100000"
labels: labels:
- "traefik.enable=true" - "traefik.enable=true"
- "traefik.http.routers.adventurelog.entrypoints=websecure" - "traefik.http.routers.adventurelogweb.entrypoints=websecure"
- "traefik.http.routers.adventurelog.rule=Host(`yourdomain.com`) && !PathPrefix(`/media`)" # Replace with your domain - "traefik.http.routers.adventurelogweb.rule=Host(`yourdomain.com`) && !PathPrefix(`/media`)" # Replace with your domain
- "traefik.http.routers.adventurelog.tls=true" - "traefik.http.routers.adventurelogweb.tls=true"
- "traefik.http.routers.adventurelog.tls.certresolver=letsencrypt" - "traefik.http.routers.adventurelogweb.tls.certresolver=letsencrypt"
server: server:
image: ghcr.io/seanmorley15/adventurelog-backend:latest image: ghcr.io/seanmorley15/adventurelog-backend:latest
@ -61,6 +61,12 @@ services:
FRONTEND_URL: "https://yourdomain.com" # Replace with your domain FRONTEND_URL: "https://yourdomain.com" # Replace with your domain
volumes: volumes:
- adventurelog-media:/code/media - adventurelog-media:/code/media
labels:
- "traefik.enable=true"
- "traefik.http.routers.adventurelogserver.entrypoints=websecure"
- "traefik.http.routers.adventurelogserver.rule=Host(`yourdomain.com`) && PathPrefix(`/media`)" # Replace with your domain
- "traefik.http.routers.adventurelogserver.tls=true"
- "traefik.http.routers.adventurelogserver.tls.certresolver=letsencrypt"
volumes: volumes:
postgres-data: postgres-data: