16 lines
374 B
YAML
16 lines
374 B
YAML
version: "3"
|
|
|
|
services:
|
|
ghost:
|
|
image: ghost:5.49.0
|
|
container_name: ghost
|
|
volumes:
|
|
- ./..:/var/lib/ghost/content/themes/liebling:Z
|
|
- ./ghost.db:/var/lib/ghost/content/data/ghost.db:Z
|
|
environment:
|
|
NODE_ENV: development
|
|
database__client: sqlite3
|
|
database__connection__filename: content/data/ghost.db
|
|
ports:
|
|
- 2368:2368
|