This commit is contained in:
Tomas Krejci 2023-07-19 21:50:46 +02:00
parent 99808fe8fb
commit ff70c41470

26
docker-compose.yml Normal file
View File

@ -0,0 +1,26 @@
version: '3.1'
services:
ghost:
image: ghost:4-alpine
restart: always
ports:
- 8080:2368
environment:
# see https://ghost.org/docs/config/#configuration-options
database__client: mysql
database__connection__host: db
database__connection__user: root
database__connection__password: SECRET
database__connection__database: ghost
# this url value is just an example, and is likely wrong for your environment!
url: https://tomaskrejci.com
# contrary to the default mentioned in the linked documentation, this image defaults to NODE_ENV=production (so development mode needs to be explicitly specified if desired)
#NODE_ENV: development
db:
image: mysql:8.0
restart: always
environment:
MYSQL_ROOT_PASSWORD: SECRET