@@ -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.1.5
18+ docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:2.1.6
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.1.5
55+ baserow/baserow:2.1.6
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.1.5 ` image by default runs all of Baserow's various services in
78+ The `baserow/baserow:2.1.6 ` 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.1.5
226+ baserow/baserow:2.1.6
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.1.5
239+ baserow/baserow:2.1.6
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.1.5
252+ baserow/baserow:2.1.6
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.1.5
271+ baserow/baserow:2.1.6
272272```
273273
274274### With an external Redis server
@@ -289,7 +289,7 @@ docker run \
289289 -p 80:80 \
290290 -p 443:443 \
291291 --restart unless-stopped \
292- baserow/baserow:2.1.5
292+ baserow/baserow:2.1.6
293293```
294294
295295### With an external email server
@@ -309,7 +309,7 @@ docker run \
309309 -p 80:80 \
310310 -p 443:443 \
311311 --restart unless-stopped \
312- baserow/baserow:2.1.5
312+ baserow/baserow:2.1.6
313313```
314314
315315### With a Postgresql server running on the same host as the Baserow docker container
@@ -347,7 +347,7 @@ docker run \
347347 -v baserow_data:/baserow/data \
348348 -p 80:80 \
349349 -p 443:443 \
350- baserow/baserow:2.1.5
350+ baserow/baserow:2.1.6
351351```
352352
353353### Supply secrets using files
@@ -374,7 +374,7 @@ docker run \
374374 -v baserow_data:/baserow/data \
375375 -p 80:80 \
376376 -p 443:443 \
377- baserow/baserow:2.1.5
377+ baserow/baserow:2.1.6
378378```
379379
380380### Start just the embedded database
@@ -387,7 +387,7 @@ docker run -it \
387387 --name baserow \
388388 -p 5432:5432 \
389389 -v baserow_data:/baserow/data \
390- baserow/baserow:2.1.5 \
390+ baserow/baserow:2.1.6 \
391391 start-only-db
392392# Now get the password from
393393docker exec -it baserow cat /baserow/data/.pgpass
@@ -419,7 +419,7 @@ docker run -it \
419419 --rm \
420420 --name baserow \
421421 -v baserow_data:/baserow/data \
422- baserow/baserow:2.1.5 \
422+ baserow/baserow:2.1.6 \
423423 backend-cmd-with-db manage dbshell
424424```
425425
@@ -542,19 +542,19 @@ the command below.
542542
543543```bash
544544# First read the help message for this command
545- docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:2.1.5 \
545+ docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:2.1.6 \
546546 backend-cmd-with-db backup --help
547547
548548# Stop Baserow instance
549549docker stop baserow
550550
551551# The command below backs up Baserow to the backups folder in the baserow_data volume:
552- docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:2.1.5 \
552+ docker run -it --rm -v baserow_data:/baserow/data baserow/baserow:2.1.6 \
553553 backend-cmd-with-db backup -f /baserow/data/backups/backup.tar.gz
554554
555555# Or backup to a file on your host instead run something like:
556556docker run -it --rm -v baserow_data:/baserow/data -v $PWD:/baserow/host \
557- baserow/baserow:2.1.5 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz
557+ baserow/baserow:2.1.6 backend-cmd-with-db backup -f /baserow/host/backup.tar.gz
558558```
559559
560560### Restore only Baserow's Postgres Database
@@ -570,13 +570,13 @@ docker stop baserow
570570docker run -it --rm \
571571 -v old_baserow_data_volume_containing_the_backup_tar_gz:/baserow/old_data \
572572 -v new_baserow_data_volume_to_restore_into:/baserow/data \
573- baserow/baserow:2.1.5 backend-cmd-with-db restore -f /baserow/old_data/backup.tar.gz
573+ baserow/baserow:2.1.6 backend-cmd-with-db restore -f /baserow/old_data/backup.tar.gz
574574
575575# Or to restore from a file on your host instead run something like:
576576docker run -it --rm \
577577 -v baserow_data:/baserow/data -v \
578578 $(pwd):/baserow/host \
579- baserow/baserow:2.1.5 backend-cmd-with-db restore -f /baserow/host/backup.tar.gz
579+ baserow/baserow:2.1.6 backend-cmd-with-db restore -f /baserow/host/backup.tar.gz
580580```
581581
582582## Running healthchecks on Baserow
@@ -627,7 +627,7 @@ docker run \
627627 -p 80:80 \
628628 -p 443:443 \
629629 --restart unless-stopped \
630- baserow/baserow:2.1.5
630+ baserow/baserow:2.1.6
631631```
632632
633633Or you can just store it directly in the volume at `baserow_data/env` meaning it will be
@@ -636,7 +636,7 @@ loaded whenever you mount in this data volume.
636636### Building your own image from Baserow
637637
638638```dockerfile
639- FROM baserow/baserow:2.1.5
639+ FROM baserow/baserow:2.1.6
640640
641641# Any .sh files found in /baserow/supervisor/env/ will be sourced and loaded at startup
642642# useful for storing your own environment variable overrides.
0 commit comments