Add --rm to docker run instruction to run it more cleanly

This commit is contained in:
Petr Sloup
2017-07-28 09:54:12 +02:00
parent 42f24c2c99
commit bb09f3df64
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ Docker
When running docker image, no special installation is needed -- the docker will automatically download the image if not present.
Just run ``docker run -it -v $(pwd):/data -p 8080:80 klokantech/tileserver-gl``.
Just run ``docker run --rm -it -v $(pwd):/data -p 8080:80 klokantech/tileserver-gl``.
Additional options (see :doc:`/usage`) can be passed to the TileServer GL by appending them to the end of this command. You can, for example, do the following: