2024-02-20 14:07:12 +00:00
|
|
|
# documentation: https://ghost.org
|
|
|
|
# slogan: Ghost is a content management system (CMS) and blogging platform.
|
2023-10-24 10:33:49 +00:00
|
|
|
# tags: cms, blog, content, management, system
|
2024-02-20 14:07:12 +00:00
|
|
|
# logo: svgs/ghost.svg
|
2024-03-12 14:09:24 +00:00
|
|
|
# port: 2368
|
2023-10-19 08:51:03 +00:00
|
|
|
|
2023-09-20 13:42:41 +00:00
|
|
|
services:
|
|
|
|
ghost:
|
|
|
|
image: ghost:5
|
|
|
|
volumes:
|
|
|
|
- ghost-content-data:/var/lib/ghost/content
|
|
|
|
environment:
|
2024-03-12 14:09:24 +00:00
|
|
|
- url=$SERVICE_FQDN_GHOST_2368
|
2023-09-20 13:42:41 +00:00
|
|
|
- database__client=mysql
|
|
|
|
- database__connection__host=mysql
|
|
|
|
- database__connection__user=$SERVICE_USER_MYSQL
|
|
|
|
- database__connection__password=$SERVICE_PASSWORD_MYSQL
|
|
|
|
- database__connection__database=${MYSQL_DATABASE-ghost}
|
2023-11-24 20:23:48 +00:00
|
|
|
- mail__transport=SMTP
|
2023-11-24 20:03:59 +00:00
|
|
|
- mail__options__auth__pass=${MAIL_OPTIONS_AUTH_PASS}
|
|
|
|
- mail__options__auth__user=${MAIL_OPTIONS_AUTH_USER}
|
|
|
|
- mail__options__secure=${MAIL_OPTIONS_SECURE:-true}
|
|
|
|
- mail__options__port=${MAIL_OPTIONS_PORT:-465}
|
|
|
|
- mail__options__service=${MAIL_OPTIONS_SERVICE:-Mailgun}
|
|
|
|
- mail__options__host=${MAIL_OPTIONS_HOST}
|
2023-09-20 13:42:41 +00:00
|
|
|
depends_on:
|
2023-10-04 12:40:33 +00:00
|
|
|
mysql:
|
|
|
|
condition: service_healthy
|
2024-04-16 12:08:11 +00:00
|
|
|
healthcheck:
|
|
|
|
test: ["CMD", "echo", "ok"]
|
|
|
|
interval: 5s
|
|
|
|
timeout: 20s
|
|
|
|
retries: 10
|
2023-09-20 13:42:41 +00:00
|
|
|
mysql:
|
|
|
|
image: mysql:8.0
|
|
|
|
volumes:
|
|
|
|
- ghost-mysql-data:/var/lib/mysql
|
|
|
|
environment:
|
|
|
|
- MYSQL_USER=${SERVICE_USER_MYSQL}
|
|
|
|
- MYSQL_PASSWORD=${SERVICE_PASSWORD_MYSQL}
|
|
|
|
- MYSQL_DATABASE=${MYSQL_DATABASE}
|
2023-10-04 12:40:33 +00:00
|
|
|
- MYSQL_ROOT_PASSWORD=${SERVICE_PASSWORD_MYSQLROOT}
|
|
|
|
healthcheck:
|
|
|
|
test: ["CMD", "mysqladmin", "ping", "-h", "localhost"]
|
|
|
|
interval: 5s
|
2023-10-26 08:02:51 +00:00
|
|
|
timeout: 20s
|
2023-10-04 12:40:33 +00:00
|
|
|
retries: 10
|