chore: publish 0.1.0+1.21.2 release
continuous-integration/drone/push Build encountered an error Details

This commit is contained in:
Cassowary 2023-12-25 12:24:31 -08:00
parent fae352b84a
commit f6ab434340
2 changed files with 12 additions and 3 deletions

View File

@ -17,8 +17,9 @@
## Quick start
* `abra app new baserow --secrets`
* `abra app new baserow`
* `abra app config <app-name>`
* `abra app deploy <app-name>`
For more, see [`docs.coopcloud.tech`](https://docs.coopcloud.tech).

View File

@ -3,9 +3,11 @@ version: "3.8"
services:
app:
image: nginx:1.20.0
image: baserow/baserow:1.21.2
networks:
- proxy
environment:
- BASEROW_PUBLIC_URL=https://${DOMAIN}
deploy:
restart_policy:
condition: on-failure
@ -19,7 +21,7 @@ services:
#- "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="
- "coop-cloud.${STACK_NAME}.version=0.1.0+1.21.2"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost"]
interval: 30s
@ -27,6 +29,12 @@ services:
retries: 10
start_period: 1m
volumes:
- baserow_data:/baserow/data
volumes:
baserow_data:
networks:
proxy:
external: true