mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-25 11:16:31 -05:00
e07cd62596
This rewrite follows the principles of https://diataxis.fr/ Co-authored-by: Erik Michelson <github@erik.michelson.eu> Signed-off-by: Philip Molares <philip.molares@udo.edu> Signed-off-by: Erik Michelson <github@erik.michelson.eu>
38 lines
No EOL
879 B
YAML
38 lines
No EOL
879 B
YAML
services:
|
|
backend:
|
|
image: ghcr.io/hedgedoc/hedgedoc/backend:2.0-alpha
|
|
volumes:
|
|
- $PWD/.env:/usr/src/app/backend/.env
|
|
- hedgedoc_uploads:/usr/src/app/backend/uploads
|
|
|
|
frontend:
|
|
image: ghcr.io/hedgedoc/hedgedoc/frontend:2.0-alpha
|
|
environment:
|
|
HD_BASE_URL: "${HD_BASE_URL}"
|
|
|
|
db:
|
|
image: postgres:15
|
|
environment:
|
|
POSTGRES_USER: "${HD_DATABASE_USER}"
|
|
POSTGRES_PASSWORD: "${HD_DATABASE_PASS}"
|
|
POSTGRES_DB: "${HD_DATABASE_NAME}"
|
|
volumes:
|
|
- hedgedoc_postgres:/var/lib/postgresql/data
|
|
|
|
proxy:
|
|
image: caddy:latest
|
|
restart: unless-stopped
|
|
environment:
|
|
HD_BASE_URL: "${HD_BASE_URL}"
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
- "443:443/udp"
|
|
volumes:
|
|
- $PWD/Caddyfile:/etc/caddy/Caddyfile
|
|
- caddy_data:/data
|
|
|
|
volumes:
|
|
caddy_data:
|
|
hedgedoc_uploads:
|
|
hedgedoc_postgres: |