diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 164784e7..dac71658 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -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: '' diff --git a/.github/ISSUE_TEMPLATE/deployment-issue.md b/.github/ISSUE_TEMPLATE/deployment-issue.md new file mode 100644 index 00000000..fcc8228c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/deployment-issue.md @@ -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 diff --git a/docker-compose-traefik.yaml b/docker-compose-traefik.yaml index 064b998d..c6ebcf79 100644 --- a/docker-compose-traefik.yaml +++ b/docker-compose-traefik.yaml @@ -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 @@ -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: