1
0
Fork 0
docker-compose/ghost/docker-compose.yml

15 lines
379 B
YAML
Raw Normal View History

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"