We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a37a494 commit 41f84deCopy full SHA for 41f84de
pelican/Docker.md
@@ -22,7 +22,7 @@ Running the image
22
23
$ cd <website checkout containing pelicanconf.py>
24
25
-$ docker run -it -p8000:8000 -v $PWD:/site IMAGENAME
+$ docker run --rm -it -p8000:8000 -v $PWD:/site IMAGENAME
26
27
This will start the Docker container.
28
The website files are mapped to /site.
@@ -36,7 +36,7 @@ Running the image interactively
36
37
$ cd WEBSITE # directory must contain pelicanconf.py
38
39
-$ docker run -it -p8000:8000 -v $PWD:/site --entrypoint bash IMAGENAME
+$ docker run --rm -it -p8000:8000 -v $PWD:/site --entrypoint bash IMAGENAME
40
41
This will start a shell in the container.
42
Use the `pelicanasf` wrapper command to run Pelican as it automatically adds
0 commit comments