22 lines
501 B
Django/Jinja
22 lines
501 B
Django/Jinja
services:
|
|
|
|
ghost:
|
|
image: ghost:5-alpine
|
|
restart: unless-stopped
|
|
environment:
|
|
- database__client=sqlite3
|
|
- database__connection__filename=/var/lib/ghost/content/data/ghost.db
|
|
- database__useNullAsDefault=true
|
|
- url=https://phlog.thesatelliteoflove.com
|
|
volumes:
|
|
- ghost:/var/lib/ghost/content
|
|
extra_hosts:
|
|
- 'phlog.thesatelliteoflove.com:172.20.0.5'
|
|
|
|
volumes:
|
|
ghost:
|
|
driver: local
|
|
networks:
|
|
default:
|
|
external: true
|
|
name: lava |