hi,
just for training, I was following the page Install with Docker // Baserow
In feb 23, I installed a v1.14 docker as follows :
sudo docker run \
-d \
--name baserow \
-e BASEROW_PUBLIC_URL=http://localhost \
-v baserow_data:/baserow/data \
-p 80:80 \
-p 443:443 \
--restart unless-stopped \
baserow/baserow:1.14.0
Now I want to upgrade it to last version 1.15.1
I follow the steps :
2/ stop : $ sudo docker stop baserow
3/ upgrade :
$ sudo docker run -d --name baserow_1.15.1 \
> baserow/baserow:1.15.1
4/ does not exist in doc ! may be here is the problem
5/ follow the logs to monitor it:
$ sudo docker logs -f baserow_1.15.1
answers to me :
Please run baserow with a mounted data folder 'docker run -v baserow_data:/baserow/data ...', otherwise your data will be lost between runs. To disable this check set the DISABLE_VOLUME_CHECK env variable to 'yes' (docker run -e DISABLE_VOLUME_CHECK=yes ...).
Where is the problem please ?