@@ -15,7 +15,7 @@ tool gives you the powers of a developer without leaving your browser.
15
15
[ Vue.js] ( https://vuejs.org/ ) and [ PostgreSQL] ( https://www.postgresql.org/ ) .
16
16
17
17
``` bash
18
- docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:1.32.4
18
+ docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:1.32.5
19
19
```
20
20
21
21
## Quick Reference
@@ -52,7 +52,7 @@ docker run \
52
52
-p 80:80 \
53
53
-p 443:443 \
54
54
--restart unless-stopped \
55
- baserow/baserow:1.32.4
55
+ baserow/baserow:1.32.5
56
56
```
57
57
58
58
* Change ` BASEROW_PUBLIC_URL ` to ` https://YOUR_DOMAIN ` or ` http://YOUR_IP ` to enable
@@ -75,7 +75,7 @@ docker run \
75
75
76
76
## Image Feature Overview
77
77
78
- The ` baserow/baserow:1.32.4 ` image by default runs all of Baserow's various services in
78
+ The ` baserow/baserow:1.32.5 ` image by default runs all of Baserow's various services in
79
79
a single container for maximum ease of use.
80
80
81
81
> This image is designed for simple single server deployments or simple container
@@ -223,7 +223,7 @@ docker run \
223
223
-p 80:80 \
224
224
-p 443:443 \
225
225
--restart unless-stopped \
226
- baserow/baserow:1.32.4
226
+ baserow/baserow:1.32.5
227
227
```
228
228
229
229
### Behind a reverse proxy already handling ssl
@@ -236,7 +236,7 @@ docker run \
236
236
-v baserow_data:/baserow/data \
237
237
-p 80:80 \
238
238
--restart unless-stopped \
239
- baserow/baserow:1.32.4
239
+ baserow/baserow:1.32.5
240
240
```
241
241
242
242
### On a nonstandard HTTP port
@@ -249,7 +249,7 @@ docker run \
249
249
-v baserow_data:/baserow/data \
250
250
-p 3001:80 \
251
251
--restart unless-stopped \
252
- baserow/baserow:1.32.4
252
+ baserow/baserow:1.32.5
253
253
```
254
254
255
255
### With an external PostgresSQL server
@@ -268,7 +268,7 @@ docker run \
268
268
-p 80:80 \
269
269
-p 443:443 \
270
270
--restart unless-stopped \
271
- baserow/baserow:1.32.4
271
+ baserow/baserow:1.32.5
272
272
```
273
273
274
274
### With an external Redis server
@@ -287,7 +287,7 @@ docker run \
287
287
-p 80:80 \
288
288
-p 443:443 \
289
289
--restart unless-stopped \
290
- baserow/baserow:1.32.4
290
+ baserow/baserow:1.32.5
291
291
```
292
292
293
293
### With an external email server
@@ -307,7 +307,7 @@ docker run \
307
307
-p 80:80 \
308
308
-p 443:443 \
309
309
--restart unless-stopped \
310
- baserow/baserow:1.32.4
310
+ baserow/baserow:1.32.5
311
311
```
312
312
313
313
### With a Postgresql server running on the same host as the Baserow docker container
@@ -345,7 +345,7 @@ docker run \
345
345
-v baserow_data:/baserow/data \
346
346
-p 80:80 \
347
347
-p 443:443 \
348
- baserow/baserow:1.32.4
348
+ baserow/baserow:1.32.5
349
349
```
350
350
351
351
### Supply secrets using files
@@ -372,7 +372,7 @@ docker run \
372
372
-v baserow_data:/baserow/data \
373
373
-p 80:80 \
374
374
-p 443:443 \
375
- baserow/baserow:1.32.4
375
+ baserow/baserow:1.32.5
376
376
```
377
377
378
378
### Start just the embedded database
@@ -385,7 +385,7 @@ docker run -it \
385
385
--name baserow \
386
386
-p 5432:5432 \
387
387
-v baserow_data:/baserow/data \
388
- baserow/baserow:1.32.4 \
388
+ baserow/baserow:1.32.5 \
389
389
start-only-db
390
390
# Now get the password from
391
391
docker exec -it baserow cat /baserow/data/.pgpass
@@ -417,7 +417,7 @@ docker run -it \
417
417
--rm \
418
418
--name baserow \
419
419
-v baserow_data:/baserow/data \
420
- baserow/baserow:1.32.4 \
420
+ baserow/baserow:1.32.5 \
421
421
backend-cmd-with-db manage dbshell
422
422
```
423
423
@@ -540,19 +540,19 @@ the command below.
540
540
541
541
``` bash
542
542
# First read the help message for this command
543
- docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.32.4 \
543
+ docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.32.5 \
544
544
backend-cmd-with-db backup --help
545
545
546
546
# Stop Baserow instance
547
547
docker stop baserow
548
548
549
549
# The command below backs up Baserow to the backups folder in the baserow_data volume:
550
- docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.32.4 \
550
+ docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:1.32.5 \
551
551
backend-cmd-with-db backup -f /baserow/data/backups/backup.tar.gz
552
552
553
553
# Or backup to a file on your host instead run something like:
554
554
docker run -it --rm -v baserow_data:/baserow/data -v $PWD :/baserow/host \
555
- baserow/baserow:1.32.4 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz
555
+ baserow/baserow:1.32.5 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz
556
556
```
557
557
558
558
### Restore only Baserow's Postgres Database
@@ -568,13 +568,13 @@ docker stop baserow
568
568
docker run -it --rm \
569
569
-v old_baserow_data_volume_containing_the_backup_tar_gz:/baserow/old_data \
570
570
-v new_baserow_data_volume_to_restore_into:/baserow/data \
571
- baserow/baserow:1.32.4 backend-cmd-with-db restore -f /baserow/old_data/backup.tar.gz
571
+ baserow/baserow:1.32.5 backend-cmd-with-db restore -f /baserow/old_data/backup.tar.gz
572
572
573
573
# Or to restore from a file on your host instead run something like:
574
574
docker run -it --rm \
575
575
-v baserow_data:/baserow/data -v \
576
576
$( pwd) :/baserow/host \
577
- baserow/baserow:1.32.4 backend-cmd-with-db restore -f /baserow/host/backup.tar.gz
577
+ baserow/baserow:1.32.5 backend-cmd-with-db restore -f /baserow/host/backup.tar.gz
578
578
```
579
579
580
580
## Running healthchecks on Baserow
@@ -625,7 +625,7 @@ docker run \
625
625
-p 80:80 \
626
626
-p 443:443 \
627
627
--restart unless-stopped \
628
- baserow/baserow:1.32.4
628
+ baserow/baserow:1.32.5
629
629
```
630
630
631
631
Or you can just store it directly in the volume at ` baserow_data/env ` meaning it will be
@@ -634,7 +634,7 @@ loaded whenever you mount in this data volume.
634
634
### Building your own image from Baserow
635
635
636
636
``` dockerfile
637
- FROM baserow/baserow:1.32.4
637
+ FROM baserow/baserow:1.32.5
638
638
639
639
# Any .sh files found in /baserow/supervisor/env/ will be sourced and loaded at startup
640
640
# useful for storing your own environment variable overrides.
0 commit comments