1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-24 08:52:31 +02:00
dockerfiles/ghost/README.md

25 lines
383 B
Markdown
Raw Normal View History

2015-08-31 01:53:16 +02: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/
2016-05-01 03:06:20 +02:00
>>> sed -i 's/localhost:2368/blog.easypi.info/' config.js
2015-08-31 01:53:16 +02:00
>>> sed -i '/google/d' themes/casper/default.hbs
>>> exit
$ docker-compose restart
```