14 lines
270 B
YAML
14 lines
270 B
YAML
services:
|
|
ghost:
|
|
image: ghost:6.16.1-alpine
|
|
container_name: ghost
|
|
restart: always
|
|
networks:
|
|
- reverse-proxy
|
|
env_file: app.env
|
|
volumes:
|
|
- ./content:/var/lib/ghost/content
|
|
|
|
networks:
|
|
reverse-proxy:
|
|
external: true |