ghost
This commit is contained in:
parent
32d81b73bb
commit
245833c095
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
data
|
||||
db
|
34
docker-compose.yaml
Normal file
34
docker-compose.yaml
Normal file
@ -0,0 +1,34 @@
|
||||
version: '3.1'
|
||||
services:
|
||||
app-ghost:
|
||||
image: ghost:2.38.2-alpine
|
||||
volumes:
|
||||
- ./data:/var/lib/ghost/content
|
||||
ports:
|
||||
- "2368:2368"
|
||||
depends_on:
|
||||
- db-ghost
|
||||
restart: always
|
||||
environment:
|
||||
- url=http://localhost:2368
|
||||
- mail__from=S.Liebl@gmx.de
|
||||
- mail__transport=smtp
|
||||
- mail__options__host=mail.gmx.net
|
||||
- mail__options__port=587
|
||||
- mail__options__secure=false
|
||||
- mail__options__requireTLS=true
|
||||
- mail__options__tls__ciphers=SSLv3
|
||||
- mail__options__tls__rejectUnauthorized=true
|
||||
- mail__options__debug=true
|
||||
- mail__options__auth__user=x@y.de
|
||||
- mail__options__auth__pass=xxx
|
||||
db-ghost:
|
||||
image: mariadb:10.4
|
||||
restart: always
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=LLKALrsd82mNnst
|
||||
- MYSQL_DATABASE=ghost
|
||||
- MYSQL_USER=ghost
|
||||
- MYSQL_PASSWORD=Pzrq2oJhooP37ax
|
||||
volumes:
|
||||
- ./db/:/var/lib/mysql
|
Loading…
x
Reference in New Issue
Block a user