You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
659 B
YAML

version: '3.1'
services:
ghost:
image: ghost:5-alpine
restart: always
ports:
- 8088:2368
environment:
database__client: mysql
database__connection__host: db
database__connection__user: root
database__connection__password: ghost33blog
database__connection__database: ghost
url: https://nick.rond-eau.com
volumes:
- ghost:/var/lib/ghost/content
networks:
- ghost
db:
image: mysql:8.0
restart: always
environment:
MYSQL_ROOT_PASSWORD: ghost33blog
volumes:
- db:/var/lib/mysql
networks:
- ghost
volumes:
ghost:
db:
networks:
ghost: