1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-29 18:21:24 +00:00
dockerfiles/ghost/README.md
2016-05-01 09:06:20 +08:00

383 B

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.easypi.info/' config.js
>>> sed -i '/google/d' themes/casper/default.hbs
>>> exit
$ docker-compose restart