forked from Haxxnet/Compose-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-rpi-arm.yml
41 lines (39 loc) · 1.26 KB
/
docker-compose-rpi-arm.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
version: '3.3'
services:
blog:
image: ghost:5
container_name: ghost
restart: always
ports:
- 8080:2368
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/ghost/content:/var/lib/ghost/content
environment:
# see https://ghost.org/docs/config/#configuration-options
database__client: mysql
database__connection__host: database
database__connection__user: ghost_dbuser
database__connection__password: SecureDatabasePassword
database__connection__database: ghost
url: https://blog.example.com
NODE_ENV: production
#mail__transport: SMTP
#mail__options__host: smtp.google.com
#mail__options__port: 587
#mail__options__auth__user: [email protected]
#mail__options__auth__pass: SecureSmtpPassword
#mail__from: My Blog <[email protected]>
database:
image: linuxserver/mariadb
container_name: ghost-db
environment:
- PUID=1000
- PGID=1000
- MYSQL_ROOT_PASSWORD=SecureDatabaseRootPassword
- TZ=Europe/Berlin
- MYSQL_DATABASE=ghost
- MYSQL_USER=ghost_dbuser
- MYSQL_PASSWORD=SecureDatabasePassword
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/ghost/mariadb/config:/config
restart: unless-stopped