Compare commits

...

25 Commits

Author SHA1 Message Date
marlon 679bcc4ce8 chore: publish 2.0.1+2.2.2 release 2026-06-30 18:21:22 -04:00
marlon 563641ac48 chore: update image tags 2026-06-30 17:32:46 -04:00
joe-irving aaa0711fa4 chore: publish 2.1.0+2.2.0 2026-04-09 15:46:14 +01:00
joe-irving 818ec9bc13 Merge pull request 'chore: publish 2.0.0+2.0.5 release' (#8) from v2.0.0 into main
Reviewed-on: #8
2026-01-05 08:19:04 +00:00
joe-irving af3d655c8f chore: publish 2.0.0+2.0.5 release 2026-01-04 09:09:02 +00:00
marlon 1936226bf5 chore: publish 1.3.0+1.35.3 release 2025-12-10 16:00:00 -05:00
marlon 0865766102 Merge pull request 'backup/restore and merge conflicts' (#7) from linnealovespie/baserow:backup into main
Reviewed-on: #7
2025-12-10 20:49:50 +00:00
linnealovespie 475484928f Merge remote-tracking branch 'cc/backups' into backup 2025-11-24 19:55:38 -08:00
marlon 3158926e7b chore: publish 1.2.2+1.35.3 release 2025-11-10 18:58:27 -05:00
marlon 8ae0634c82 restore test 2025-11-10 18:15:59 -05:00
marlon ca1e0ec1c3 add abra.sh 2025-11-10 16:43:37 -05:00
marlon 14b65c2ecd fix pg scripting vars 2025-11-10 16:40:14 -05:00
marlon c5994bd7e4 backups test 2025-11-10 16:22:33 -05:00
marlon 136ad45cfb rollback 2025-11-10 20:46:35 +00:00
marlon 26e98e915d rollback 2025-11-10 15:42:04 -05:00
marlon aa6b8472f5 rollback restart condition 2025-11-10 15:40:19 -05:00
marlon f19c498001 chore: publish 1.2.1+1.35.3 release 2025-11-10 12:01:15 -05:00
marlon db18e08971 change restart policy to unless-stopped 2025-11-10 11:58:37 -05:00
marlon e85291cdb6 chore: publish 1.2.0+1.35.3 release 2025-10-22 10:50:26 -04:00
marlon e61e4d9e13 add backup support 2025-10-22 10:46:40 -04:00
marlon 43c7fb2130 chore: publish 1.1.0+1.31.1 release 2025-07-17 13:49:00 -04:00
marlon 48f7153a9b Merge pull request 'add config options for running with low resources' (#4) from low-resource into main
Reviewed-on: #4
2025-07-17 17:44:57 +00:00
marlon d6f980ef48 add low resources config options 2025-07-17 13:38:12 -04:00
marlon a8ae828568 chore: publish 1.0.0+1.31.1 release 2025-05-08 23:31:55 -04:00
marlon 0b930dd81d Merge pull request 'shorter jwt secret name' (#3) from shorter-secret into main
Reviewed-on: #3
Reviewed-by: decentral1se <decentral1se@noreply.git.coopcloud.tech>
2025-05-09 03:28:29 +00:00
9 changed files with 58 additions and 3 deletions
+5
View File
@@ -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
+6
View File
@@ -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).
+1
View File
@@ -0,0 +1 @@
export PG_BACKUP_CONFIG_VERSION=v1
+22
View File
@@ -0,0 +1,22 @@
if [ "$1" == "pre-backup" ]; then
# Remove any existing db dump and then create a new one
rm -rf $DATA_DIR/postgres/postgres-backup
source /baserow/data/.pgpass
PGPASSWORD=$DATABASE_PASSWORD pg_dump -j 8 -h localhost -U baserow baserow --format=directory -f $DATA_DIR/postgres/postgres-backup
exit
fi
if [ "$1" == "post-backup" ]; then
rm -rf $DATA_DIR/postgres/postgres-backup
exit
fi
if [ "$1" == "pre-restore" ]; then
exit
fi
if [ "$1" == "post-restore" ]; then
source /baserow/data/.pgpass
PGPASSWORD=$DATABASE_PASSWORD pg_restore -j 8 -h localhost -U baserow -d baserow -c $DATA_DIR/postgres/postgres-backup
exit
fi
+16 -3
View File
@@ -3,7 +3,7 @@ version: "3.8"
services:
app:
image: baserow/baserow:1.31.1
image: baserow/baserow:2.2.2
networks:
- proxy
environment:
@@ -28,20 +28,33 @@ 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"
- "backupbot.backup.pre-hook=/backup.sh pre-backup"
- "backupbot.backup.post-hook=/backup.sh post-backup"
- "backupbot.restore.post-hook=/backup.sh post-restore"
- "coop-cloud.${STACK_NAME}.version=2.0.1+2.2.2"
healthcheck:
test: ["CMD", "./baserow.sh", "backend-cmd", "backend-healthcheck"]
interval: 30s
timeout: 10s
retries: 10
start_period: 1m
volumes:
- baserow_data:/baserow/data
configs:
- source: backup-postgres
target: /backup.sh
mode: 0777
volumes:
baserow_data:
configs:
backup-postgres:
name: backup-postgres_${PG_BACKUP_CONFIG_VERSION}
file: ./backup-postgres.sh
networks:
proxy:
external: true
+1
View File
@@ -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>
+1
View File
@@ -0,0 +1 @@
Backup/restore of the postgres database backend will now use pg_dump and pg_restore
+3
View File
@@ -0,0 +1,3 @@
= 1 Breaking Change =
[Builder] Data source now return content with human property names instead of technical ones #4135
+3
View File
@@ -0,0 +1,3 @@
See release notes here ->
https://baserow.io/blog/baserow-2-2-release-notes