diff --git a/README.md b/README.md index 6ad9df2..a4f2e6b 100644 --- a/README.md +++ b/README.md @@ -17,8 +17,9 @@ ## Quick start -* `abra app new baserow --secrets` +* `abra app new baserow` * `abra app config ` * `abra app deploy ` For more, see [`docs.coopcloud.tech`](https://docs.coopcloud.tech). + diff --git a/compose.yml b/compose.yml index a2c3805..a98a341 100644 --- a/compose.yml +++ b/compose.yml @@ -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