1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-24 08:52:31 +02:00
dockerfiles/ghost
2015-12-06 17:21:51 +08:00
..
arm fix 2015-12-06 17:21:51 +08:00
docker-compose.yml add ghost 2015-08-31 07:53:16 +08:00
README.md add ghost 2015-08-31 07:53:16 +08:00

ghost

docker-compose.yml

ghost:
    image: ghost
    ports:
        - "127.0.0.1:2368:2368"
    restart: always

Up and Running

$ docker-compose up -d
$ docker exec -it ghost_ghost_1 bash
>>> cd /var/lib/ghost/
>>> sed -i 's/localhost:2368/blog.datageek.info/' config.js
>>> sed -i '/google/d' themes/casper/default.hbs
>>> exit
$ docker-compose restart