15 lines
379 B
YAML
15 lines
379 B
YAML
![]() |
version: "3.1"
|
||
|
|
||
|
services:
|
||
|
ghost:
|
||
|
image: ghost:latest
|
||
|
container_name: ghost
|
||
|
environment:
|
||
|
- NODE_ENV=production
|
||
|
restart: always
|
||
|
volumes:
|
||
|
- ./content:/var/lib/ghost/content
|
||
|
- ./config.production.json:/var/lib/ghost/config.production.json
|
||
|
ports:
|
||
|
- "2368:2368"
|