19 lines
No EOL
688 B
Text
Executable file
19 lines
No EOL
688 B
Text
Executable file
services:
|
|
# MYSQL/MARIADB Only - Designed to be connected to another MySQL/MariaDB server !
|
|
# Container Name will be setup as variable is set !
|
|
ghost-website:
|
|
container_name: ghost-website-${DOMAIN}-${DIFFUSION}
|
|
image: ghost:latest
|
|
restart: always
|
|
ports:
|
|
- ${DIFFUSION}:2368
|
|
volumes:
|
|
- ${DATA_DIR}/${DOMAIN}/ghost-website:/var/lib/ghost/content
|
|
environment:
|
|
database__client: mysql
|
|
database__connection__host: ${DBIP}
|
|
database__connection__port: ${DBPORT}
|
|
database__connection__user: ${DBUSER}
|
|
database__connection__password: ${DBPASS}
|
|
database__connection__database: ${DBNAME}
|
|
url: https://${DOMAIN} |