Documentation

This commit is contained in:
allegroai 2019-11-09 23:45:12 +02:00
parent 2346c6f3f5
commit 6d4c974045

View File

@ -153,5 +153,14 @@ When we release a new version and include a new pre-built Docker image for it, u
$ sudo docker pull allegroai/trains:0.11.0
```
4. Launch the newly released Docker image (see [Launching Docker Containers](#launch-docker)).
4. Launch the newly released Docker image (see [Launching Docker Containers](#trains-server-manually-launching-docker-containers-)).
#### Common Docker Upgrade Errors
* In case of a docker error: "... The container name "/trains-???" is already in use by ..."
Try removing deprecated images with:
```bash
$ docker rm -f $(docker ps -a -q)
```