Server update
If you use docker containers to run your site, then over time you will have a question about how to update the Melbis Shop kernel. This is done quite simply: First, you need to go to the directory where your container assembly file is located: docker-compose.yml :
# cd /var/melbis
Then you need to run the update command and download new images:
# docker-compose pull
and restart the containers:
# docker-compose up -d
There are some more useful commands, for example, downloading only the latest Melbis Shop image:
# docker pull kasdim/melbis-shop
Completely stopping containers (in order to recreate them later):
# docker-compose down
# docker-compose up -d