Compare commits
11 Commits
0.2.0+1.21
...
0.7.0+1.31
Author | SHA1 | Date | |
---|---|---|---|
9d28e3695a | |||
7fd09f34a5 | |||
1cc375cf19 | |||
0591e1bf1c | |||
016e7b6848 | |||
658be3c520 | |||
3287bfc479 | |||
261493929e | |||
736acbf014 | |||
3564202372 | |||
15817b421d |
@ -7,6 +7,9 @@ COMPOSE_FILE="compose.yml"
|
||||
## Domain aliases
|
||||
#EXTRA_DOMAINS=', `www.baserow.example.com`'
|
||||
|
||||
## Automatically use subdomains under following domain (anything.example.com)
|
||||
#WILDCARD_DOMAIN='example.com'
|
||||
|
||||
LETS_ENCRYPT_ENV=production
|
||||
|
||||
# COMPOSE_FILE="$COMPOSE_FILE:compose.email.yml"
|
||||
|
@ -7,7 +7,7 @@
|
||||
* **Category**: Apps
|
||||
* **Status**: 0
|
||||
* **Image**: [`baserow`](https://hub.docker.com/r/baserow), 4, upstream
|
||||
* **Healthcheck**: No
|
||||
* **Healthcheck**: Yes (using https://baserow.io/docs/installation%2Finstall-with-docker#running-healthchecks-on-baserow)
|
||||
* **Backups**: No
|
||||
* **Email**: No
|
||||
* **Tests**: No
|
||||
|
10
compose.yml
10
compose.yml
@ -3,13 +3,15 @@ version: "3.8"
|
||||
|
||||
services:
|
||||
app:
|
||||
image: baserow/baserow:1.21.2
|
||||
image: baserow/baserow:1.31.1
|
||||
networks:
|
||||
- proxy
|
||||
environment:
|
||||
- BASEROW_PUBLIC_URL=https://${DOMAIN}
|
||||
- SECRET_KEY_FILE=/run/secrets/secret_key
|
||||
- BASEROW_JWT_SIGNING_KEY_FILE=/run/secrets/baserow_jwt_signing_key
|
||||
- BASEROW_CADDY_ADDRESSES=:80
|
||||
- BASEROW_BUILDER_DOMAINS=${WILDCARD_DOMAIN}
|
||||
secrets:
|
||||
- secret_key
|
||||
- baserow_jwt_signing_key
|
||||
@ -19,16 +21,16 @@ services:
|
||||
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.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`${EXTRA_DOMAINS}) || HostRegexp(`{subdomain:\\w+}.${WILDCARD_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}"
|
||||
- "coop-cloud.${STACK_NAME}.version=0.2.0+1.21.2"
|
||||
- "coop-cloud.${STACK_NAME}.version=0.7.0+1.31.1"
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://localhost"]
|
||||
test: ["CMD", "./baserow.sh", "backend-cmd", "backend-healthcheck"]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 10
|
||||
|
1
release/0.3.0+1.25.2
Normal file
1
release/0.3.0+1.25.2
Normal file
@ -0,0 +1 @@
|
||||
WARNING: this version includes a major Postgres upgrade, you need to follow the steps here, ideally BEFORE upgrading: https://baserow.io/docs/installation%2Finstall-with-docker#upgrade-process
|
Reference in New Issue
Block a user