From 5964bb18933a559e4bf26ee1b49fe3f1d9f12363 Mon Sep 17 00:00:00 2001 From: decentral1se Date: Mon, 20 Sep 2021 10:05:20 +0200 Subject: [PATCH] WIP very WIP --- README.md | 4 ++-- compose.yml | 33 ++++++++++++++++++++------------- 2 files changed, 22 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 7c24e45..36012a1 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# {{ .Name }} +# focalboard -{{ .Description }} +An open source, self-hosted alternative to Trello, Notion, and Asana. diff --git a/compose.yml b/compose.yml index 662a96c..20df73d 100644 --- a/compose.yml +++ b/compose.yml @@ -3,29 +3,36 @@ version: "3.8" services: app: - image: nginx:1.19.2 + image: mattermost/focalboard:0.9.0 networks: - proxy + - backend deploy: restart_policy: condition: on-failure labels: - "traefik.enable=true" - - "traefik.http.services.${STACK_NAME}.loadbalancer.server.port=80" - - "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`${EXTRA_DOMAINS})" + - "traefik.http.services.${STACK_NAME}.loadbalancer.server.port=8000" + - "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)" - "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure" - "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}" - ## Redirect from EXTRA_DOMAINS to DOMAIN - #- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect" - #- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLForceHost=true" - #- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}" - healthcheck: - test: ["CMD", "curl", "-f", "http://localhost"] - interval: 30s - timeout: 10s - retries: 10 - start_period: 1m + + db: + image: "postgres:13" + secrets: + - db_password + environment: + - POSTGRES_DB=focalboard + - POSTGRES_USER=focalboard + - POSTGRES_PASSWORD_FILE=/run/secrets/db_password + volumes: + - db:/var/lib/postgresql/data + networks: + - backend networks: proxy: external: true + +volumes: + db: