Compare commits
13 Commits
shorter-se
...
1.2.2+1.35
| Author | SHA1 | Date | |
|---|---|---|---|
| 3158926e7b | |||
| 136ad45cfb | |||
| 26e98e915d | |||
| aa6b8472f5 | |||
| f19c498001 | |||
| db18e08971 | |||
| e85291cdb6 | |||
| e61e4d9e13 | |||
| 43c7fb2130 | |||
| 48f7153a9b | |||
| d6f980ef48 | |||
| a8ae828568 | |||
| 0b930dd81d |
@ -12,6 +12,11 @@ COMPOSE_FILE="compose.yml"
|
||||
|
||||
LETS_ENCRYPT_ENV=production
|
||||
|
||||
## For low-resource machines (<2GB ram)
|
||||
# BASEROW_AMOUNT_OF_GUNICORN_WORKERS=1
|
||||
# BASEROW_AMOUNT_OF_WORKERS=1
|
||||
# BASEROW_RUN_MINIMAL=yes
|
||||
|
||||
# COMPOSE_FILE="$COMPOSE_FILE:compose.email.yml"
|
||||
# FROM_EMAIL="No Reply <noreply@example.com>"
|
||||
# EMAIL_SMTP_USE_TLS=true
|
||||
|
||||
@ -21,5 +21,11 @@
|
||||
* `abra app config <app-name>`
|
||||
* `abra app deploy <app-name>`
|
||||
|
||||
## Resources
|
||||
|
||||
* Baserow requires over 2GB RAM to run on Co-op Cloud with default settings
|
||||
* For environments with 2GB or less RAM, run `abra app config <app-name>` and uncomment the `For low-resource machines` config block
|
||||
* More info: https://hub.docker.com/r/baserow/baserow/#scaling-options
|
||||
|
||||
For more, see [`docs.coopcloud.tech`](https://docs.coopcloud.tech).
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@ version: "3.8"
|
||||
|
||||
services:
|
||||
app:
|
||||
image: baserow/baserow:1.31.1
|
||||
image: baserow/baserow:1.35.3
|
||||
networks:
|
||||
- proxy
|
||||
environment:
|
||||
@ -28,7 +28,9 @@ 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=1.0.0+1.31.1"
|
||||
- "backupbot.backup=true"
|
||||
- "backupbot.backup.path=/baserow/data"
|
||||
- "coop-cloud.${STACK_NAME}.version=1.2.2+1.35.3"
|
||||
healthcheck:
|
||||
test: ["CMD", "./baserow.sh", "backend-cmd", "backend-healthcheck"]
|
||||
interval: 30s
|
||||
@ -38,7 +40,7 @@ services:
|
||||
|
||||
volumes:
|
||||
- baserow_data:/baserow/data
|
||||
|
||||
|
||||
volumes:
|
||||
baserow_data:
|
||||
|
||||
|
||||
@ -4,3 +4,4 @@ EXISTING DEPLOYMENTS MUST COPY THIS SECRET TO THE NEW LOCATION:
|
||||
docker exec <your_baserow_container_name> cat /run/secrets/baserow_jwt_signing_key
|
||||
# Create the new secret
|
||||
abra app secret insert <your_baserow_domain> jwt_key v1 <value returned by previous command>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user