mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-30 09:16:58 +02:00
14 lines
338 B
YAML
14 lines
338 B
YAML
version: "3.8"
|
|
services:
|
|
ghost:
|
|
image: ghost:alpine
|
|
ports:
|
|
- "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
|