Update
March 3, 2016 ยท View on GitHub
Update
Preparation
If you have cloned the git repository it's safe to pull the new version.
If you have used a zip file make sure to replace the docker/ directory and also
update docker-compose.yml and docker-environment.yml.
Upgrade to 5.0.x
Because of a huge refactoring you need to rebuild the app container. The web container isn't used anymore.
docker-compose stop
docker-compose rm --force app
docker-compose build --no-cache web
docker-compose up
Update to 3.4.x
As PHP_UID was replaced with EFFECTIVE_UID and PHP_GID was replaced with EFFECTIVE_GID you
have to rebuild all containers with this variables: main and web
docker-compose stop
docker-compose rm --force app
docker-compose build --no-cache web
docker-compose up