@@ -15,7 +15,7 @@ tool gives you the powers of a developer without leaving your browser.
1515 [ Vue.js] ( https://vuejs.org/ ) and [ PostgreSQL] ( https://www.postgresql.org/ ) .
1616
1717``` bash
18- docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:2.0.0
18+ docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:2.0.1
1919```
2020
2121## Quick Reference
@@ -52,7 +52,7 @@ docker run \
5252 -p 80:80 \
5353 -p 443:443 \
5454 --restart unless-stopped \
55- baserow/baserow:2.0.0
55+ baserow/baserow:2.0.1
5656```
5757
5858* Change ` BASEROW_PUBLIC_URL ` to ` https://YOUR_DOMAIN ` or ` http://YOUR_IP ` to enable
@@ -75,7 +75,7 @@ docker run \
7575
7676## Image Feature Overview
7777
78- The ` baserow/baserow:2.0.0 ` image by default runs all of Baserow's various services in
78+ The ` baserow/baserow:2.0.1 ` image by default runs all of Baserow's various services in
7979a single container for maximum ease of use.
8080
8181> This image is designed for simple single server deployments or simple container
@@ -223,7 +223,7 @@ docker run \
223223 -p 80:80 \
224224 -p 443:443 \
225225 --restart unless-stopped \
226- baserow/baserow:2.0.0
226+ baserow/baserow:2.0.1
227227```
228228
229229### Behind a reverse proxy already handling ssl
@@ -236,7 +236,7 @@ docker run \
236236 -v baserow_data:/baserow/data \
237237 -p 80:80 \
238238 --restart unless-stopped \
239- baserow/baserow:2.0.0
239+ baserow/baserow:2.0.1
240240```
241241
242242### On a nonstandard HTTP port
@@ -249,7 +249,7 @@ docker run \
249249 -v baserow_data:/baserow/data \
250250 -p 3001:80 \
251251 --restart unless-stopped \
252- baserow/baserow:2.0.0
252+ baserow/baserow:2.0.1
253253```
254254
255255### With an external PostgresSQL server
@@ -268,7 +268,7 @@ docker run \
268268 -p 80:80 \
269269 -p 443:443 \
270270 --restart unless-stopped \
271- baserow/baserow:2.0.0
271+ baserow/baserow:2.0.1
272272```
273273
274274### With an external Redis server
@@ -287,7 +287,7 @@ docker run \
287287 -p 80:80 \
288288 -p 443:443 \
289289 --restart unless-stopped \
290- baserow/baserow:2.0.0
290+ baserow/baserow:2.0.1
291291```
292292
293293### With an external email server
@@ -307,7 +307,7 @@ docker run \
307307 -p 80:80 \
308308 -p 443:443 \
309309 --restart unless-stopped \
310- baserow/baserow:2.0.0
310+ baserow/baserow:2.0.1
311311```
312312
313313### With a Postgresql server running on the same host as the Baserow docker container
@@ -345,7 +345,7 @@ docker run \
345345 -v baserow_data:/baserow/data \
346346 -p 80:80 \
347347 -p 443:443 \
348- baserow/baserow:2.0.0
348+ baserow/baserow:2.0.1
349349```
350350
351351### Supply secrets using files
@@ -372,7 +372,7 @@ docker run \
372372 -v baserow_data:/baserow/data \
373373 -p 80:80 \
374374 -p 443:443 \
375- baserow/baserow:2.0.0
375+ baserow/baserow:2.0.1
376376```
377377
378378### Start just the embedded database
@@ -385,7 +385,7 @@ docker run -it \
385385 --name baserow \
386386 -p 5432:5432 \
387387 -v baserow_data:/baserow/data \
388- baserow/baserow:2.0.0 \
388+ baserow/baserow:2.0.1 \
389389 start-only-db
390390# Now get the password from
391391docker exec -it baserow cat /baserow/data/.pgpass
@@ -417,7 +417,7 @@ docker run -it \
417417 --rm \
418418 --name baserow \
419419 -v baserow_data:/baserow/data \
420- baserow/baserow:2.0.0 \
420+ baserow/baserow:2.0.1 \
421421 backend-cmd-with-db manage dbshell
422422```
423423
@@ -540,19 +540,19 @@ the command below.
540540
541541``` bash
542542# First read the help message for this command
543- docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:2.0.0 \
543+ docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:2.0.1 \
544544 backend-cmd-with-db backup --help
545545
546546# Stop Baserow instance
547547docker stop baserow
548548
549549# 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:2.0.0 \
550+ docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:2.0.1 \
551551 backend-cmd-with-db backup -f /baserow/data/backups/backup.tar.gz
552552
553553# Or backup to a file on your host instead run something like:
554554docker run -it --rm -v baserow_data:/baserow/data -v $PWD :/baserow/host \
555- baserow/baserow:2.0.0 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz
555+ baserow/baserow:2.0.1 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz
556556```
557557
558558### Restore only Baserow's Postgres Database
@@ -568,13 +568,13 @@ docker stop baserow
568568docker run -it --rm \
569569 -v old_baserow_data_volume_containing_the_backup_tar_gz:/baserow/old_data \
570570 -v new_baserow_data_volume_to_restore_into:/baserow/data \
571- baserow/baserow:2.0.0 backend-cmd-with-db restore -f /baserow/old_data/backup.tar.gz
571+ baserow/baserow:2.0.1 backend-cmd-with-db restore -f /baserow/old_data/backup.tar.gz
572572
573573# Or to restore from a file on your host instead run something like:
574574docker run -it --rm \
575575 -v baserow_data:/baserow/data -v \
576576 $( pwd) :/baserow/host \
577- baserow/baserow:2.0.0 backend-cmd-with-db restore -f /baserow/host/backup.tar.gz
577+ baserow/baserow:2.0.1 backend-cmd-with-db restore -f /baserow/host/backup.tar.gz
578578```
579579
580580## Running healthchecks on Baserow
@@ -625,7 +625,7 @@ docker run \
625625 -p 80:80 \
626626 -p 443:443 \
627627 --restart unless-stopped \
628- baserow/baserow:2.0.0
628+ baserow/baserow:2.0.1
629629```
630630
631631Or 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.
634634### Building your own image from Baserow
635635
636636``` dockerfile
637- FROM baserow/baserow:2.0.0
637+ FROM baserow/baserow:2.0.1
638638
639639# Any .sh files found in /baserow/supervisor/env/ will be sourced and loaded at startup
640640# useful for storing your own environment variable overrides.
0 commit comments