bunkerweb/examples/ghost/autoconf.yml
2022-12-05 11:47:56 +01:00

24 lines
584 B
YAML

version: "3"
services:
myghost:
image: ghost:5.25-alpine
volumes:
- ./ghost_data:/var/lib/ghost/content
networks:
bw-services:
aliases:
- myghost
environment:
- url=https://www.example.com # replace with your domain
- NODE_ENV=development
labels:
- bunkerweb.SERVER_NAME=www.example.com # replace with your domain
- bunkerweb.USE_REVERSE_PROXY=yes
- bunkerweb.REVERSE_PROXY_URL=/
- bunkerweb.REVERSE_PROXY_HOST=http://myghost:2368
networks:
bw-services:
external:
name: bw-services