1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-04-02 08:28:06 +08:00
1Panel-Appstore/ghost/5.116.1/docker-compose.yml
Shofi Setiawan 4d112e8676 feat: Add Ghost Blogging Platform to App Store (#3646)
* feat: add Ghost blogging platform to App Store
2025-04-10 13:37:24 +08:00

25 lines
613 B
YAML

services:
ghost:
image: ghost:5.116.1
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:2368
environment:
url: ${GHOST_URL}
database__client: mysql
database__connection__host: ${PANEL_DB_HOST}
database__connection__user: ${PANEL_DB_USER}
database__connection__password: ${PANEL_DB_USER_PASSWORD}
database__connection__database: ${PANEL_DB_NAME}
volumes:
- ./data:/var/lib/ghost/content
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true