mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
* chore(blueprint): update plane services to v0.27.1 - Bumped all makeplane service images from v0.25.3 to v0.27.1 - Updated web, space, admin, live, api, worker, beat-worker, migrator and proxy services - Version alignment for all plane components in docker-compose blueprint * chore(blueprint): update plane version to v0.27.1 * chore: update ghost image and version to 6.0.0
29 lines
541 B
YAML
29 lines
541 B
YAML
version: "3.8"
|
|
services:
|
|
ghost:
|
|
image: ghost:6-alpine
|
|
restart: always
|
|
environment:
|
|
database__client: mysql
|
|
database__connection__host: db
|
|
database__connection__user: root
|
|
database__connection__password: example
|
|
database__connection__database: ghost
|
|
url: http://${GHOST_HOST}
|
|
|
|
volumes:
|
|
- ghost:/var/lib/ghost/content
|
|
|
|
db:
|
|
image: mysql:8.0
|
|
restart: always
|
|
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: example
|
|
volumes:
|
|
- db:/var/lib/mysql
|
|
|
|
volumes:
|
|
ghost:
|
|
db:
|