1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 00:08:49 +00:00
dockerfiles/ghost/docker-compose.yml
2021-02-02 18:52:08 +08:00

12 lines
301 B
YAML

ghost:
image: ghost:alpine
ports:
- "127.0.0.1:2368:2368"
volumes:
- ./data:/var/lib/ghost/content
environment:
- url=https://blog.easypi.duckdns.org
- database__client=sqlite3
- database__connection__filename=/var/lib/ghost/content/data/ghost.db
restart: unless-stopped