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:
commit
02f534662b
3 changed files with 26 additions and 5 deletions
2
.github/ISSUE_TEMPLATE/bug_report.md
vendored
2
.github/ISSUE_TEMPLATE/bug_report.md
vendored
|
@ -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: ''
|
||||||
|
|
15
.github/ISSUE_TEMPLATE/deployment-issue.md
vendored
Normal file
15
.github/ISSUE_TEMPLATE/deployment-issue.md
vendored
Normal 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
|
|
@ -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:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue