mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
41 lines
880 B
YAML
41 lines
880 B
YAML
version: "3.8"
|
|
services:
|
|
|
|
ghost:
|
|
image: ghost:5-alpine
|
|
restart: always
|
|
networks:
|
|
- dokploy-network
|
|
ports:
|
|
- ${GHOST_PORT}
|
|
environment:
|
|
database__client: mysql
|
|
database__connection__host: db
|
|
database__connection__user: root
|
|
database__connection__password: example
|
|
database__connection__database: ghost
|
|
url: http://${GHOST_HOST}
|
|
labels:
|
|
- traefik.enable=true
|
|
- traefik.http.routers.${HASH}.rule=Host(`${GHOST_HOST}`)
|
|
- traefik.http.services.${HASH}.loadbalancer.server.port=${GHOST_PORT}
|
|
volumes:
|
|
- ghost:/var/lib/ghost/content
|
|
|
|
db:
|
|
image: mysql:8.0
|
|
restart: always
|
|
networks:
|
|
- dokploy-network
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: example
|
|
volumes:
|
|
- db:/var/lib/mysql
|
|
|
|
volumes:
|
|
ghost:
|
|
db:
|
|
|
|
networks:
|
|
dokploy-network:
|
|
external: true |