add blog
This commit is contained in:
parent
852fc4346d
commit
26c1ad4476
1 changed files with 25 additions and 1 deletions
|
@ -21,3 +21,27 @@ services:
|
|||
- VIRTUAL_HOST=sh.faulty.nl
|
||||
networks:
|
||||
- proxy
|
||||
|
||||
blog:
|
||||
image: ghost:5.26.3-alpine
|
||||
environment:
|
||||
- database__client=mysql
|
||||
- database__connection__host=ghost_db
|
||||
- database__connection__user=root
|
||||
- database__connection__password=i_dont_touch_the_internet
|
||||
- database__connection__database=ghost
|
||||
- url=https://blog.faulty.nl
|
||||
- LETSENCRYPT_HOST=blog.faulty.nl
|
||||
- VIRTUAL_HOST=blog.faulty.nl
|
||||
- VIRTUAL_PORT=2368
|
||||
networks:
|
||||
- proxy
|
||||
- default
|
||||
|
||||
ghost_db:
|
||||
image: mysql:8.0-alpine
|
||||
restart: always
|
||||
environment:
|
||||
MYSQL_ROOT_PASSWORD: i_dont_touch_the_internet
|
||||
networks:
|
||||
- default
|
Reference in a new issue