Run update.sh

This commit is contained in:
Tianon Gravi 2015-04-21 09:31:35 -06:00
parent be6cb88137
commit 9d7330fe6d
1 changed files with 8 additions and 0 deletions

View File

@ -24,6 +24,14 @@ If you'd like to be able to access the instance from the host without the contai
Then, access it via `http://localhost:8080` or `http://host-ip:8080` in a browser. Then, access it via `http://localhost:8080` or `http://host-ip:8080` in a browser.
You can also point the image to your existing content on your host:
docker run --name some-ghost -v /path/to/ghost/blog:/var/lib/ghost ghost
Alternatively you can use a [data container](http://docs.docker.com/userguide/dockervolumes/) that has a volume that points to `/var/lib/ghost` and then reference it:
docker run --name some-ghost --volumes-from some-ghost-data ghost
# Supported Docker versions # Supported Docker versions
This image is officially supported on Docker version 1.6.0. This image is officially supported on Docker version 1.6.0.