Skip to content

Commit

Permalink
Merge branch 'main' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmorley15 authored Nov 27, 2024
2 parents 477e76a + b1ec7dc commit 02f5346
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
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]"
labels: bug
assignees: ''
Expand Down
15 changes: 15 additions & 0 deletions .github/ISSUE_TEMPLATE/deployment-issue.md
Original file line number Diff line number Diff line change
@@ -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
14 changes: 10 additions & 4 deletions docker-compose-traefik.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ services:
BODY_SIZE_LIMIT: "100000"
labels:
- "traefik.enable=true"
- "traefik.http.routers.adventurelog.entrypoints=websecure"
- "traefik.http.routers.adventurelog.rule=Host(`yourdomain.com`) && !PathPrefix(`/media`)" # Replace with your domain
- "traefik.http.routers.adventurelog.tls=true"
- "traefik.http.routers.adventurelog.tls.certresolver=letsencrypt"
- "traefik.http.routers.adventurelogweb.entrypoints=websecure"
- "traefik.http.routers.adventurelogweb.rule=Host(`yourdomain.com`) && !PathPrefix(`/media`)" # Replace with your domain
- "traefik.http.routers.adventurelogweb.tls=true"
- "traefik.http.routers.adventurelogweb.tls.certresolver=letsencrypt"

server:
image: ghcr.io/seanmorley15/adventurelog-backend:latest
Expand All @@ -61,6 +61,12 @@ services:
FRONTEND_URL: "https://yourdomain.com" # Replace with your domain
volumes:
- 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:
postgres-data:
Expand Down

0 comments on commit 02f5346

Please sign in to comment.