-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
138 lines (126 loc) · 4.02 KB
/
docker-compose.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
version: "3.7"
services:
traefik:
container_name: traefik
image: traefik:v2.2
ports:
- 80:80
- 443:443
volumes:
- ./config:/root/.config
- /var/run/docker.sock:/var/run/docker.sock:ro
labels:
- "traefik.enable=true"
- "traefik.docker.network=traefik"
- "traefik.http.routers.traefik_http.rule=Host(`${TRAEFIK_UI_URL}`)"
- "traefik.http.routers.traefik_http.entrypoints=web"
- "traefik.http.routers.traefik_http.middlewares=redirect-to-https"
- "traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https"
- "traefik.http.routers.traefik.rule=Host(`${TRAEFIK_UI_URL}`)"
- "traefik.http.routers.traefik.entrypoints=websecure"
- "traefik.http.routers.traefik.service=api@internal"
- "traefik.http.routers.traefik.tls=true"
networks:
- traefik
wordpress:
image: wordpress
restart: always
logging:
options:
max-size: "10m"
max-file: "3"
environment:
# Connect WordPrerss to the database
WORDPRESS_DB_HOST: db:3306
WORDPRESS_DB_USER: wordpressuser
WORDPRESS_DB_PASSWORD: changeme
WORDPRESS_DB_NAME: wordpressdb
volumes:
# save the content of WordPress an enable local modifications
- ./wordpress/data:/var/www/html
networks:
- traefik
- backend
depends_on:
- db
labels:
# The labels are usefull for Traefik only
- "traefik.enable=true"
- "traefik.docker.network=traefik"
- "traefik.http.routers.wp_http.rule=Host(`${WP_URL}`)"
- "traefik.http.routers.wp_http.entrypoints=web"
- "traefik.http.routers.wp_http.middlewares=redirect-to-https"
- "traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https"
- "traefik.http.routers.wp.rule=Host(`${WP_URL}`)"
- "traefik.http.routers.wp.entrypoints=websecure"
- "traefik.http.routers.wp.tls=true"
db:
# this is the database used by Wordpress
image: mysql:5.7
restart: always
logging:
options:
max-size: "10m"
max-file: "3"
environment:
# Connect WordPrerss to the database
MYSQL_DATABASE: wordpressdb
MYSQL_USER: wordpressuser
MYSQL_PASSWORD: changeme
MYSQL_RANDOM_ROOT_PASSWORD: '1'
volumes:
# Persist the database on disk
- ./db:/var/lib/mysql
networks:
- backend
nextcloud_database:
image: mariadb
container_name: nextcloud_database
restart: unless-stopped
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
environment:
- MYSQL_RANDOM_ROOT_PASSWORD=yes
- MYSQL_DATABASE=${MYSQL_DATABASE}
- MYSQL_USER=${MYSQL_USER}
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
networks:
- backend
- traefik
volumes:
- db:/var/lib/mysql
nextcloud:
depends_on:
- nextcloud_database
image: nextcloud
container_name: nextcloud_app
restart: unless-stopped
environment:
- MYSQL_HOST=nextcloud_database
- MYSQL_DATABASE=${MYSQL_DATABASE}
- MYSQL_USER=${MYSQL_USER}
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
networks:
- backend
- traefik
volumes:
- html:/var/www/html
labels:
- "traefik.enable=true"
- "traefik.docker.network=traefik"
- "traefik.http.routers.nextcloud_http.rule=Host(`${NEXTCLOUD_URL}`)"
- "traefik.http.routers.nextcloud_http.entrypoints=web"
- "traefik.http.routers.nextcloud_http.middlewares=redirect-to-https"
- "traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https"
- "traefik.http.routers.nextcloud.entrypoints=web,websecure"
- "traefik.http.routers.nextcloud.rule=Host(`${NEXTCLOUD_URL}`)"
- "traefik.http.services.nextcloud.loadbalancer.server.port=80"
- "traefik.http.routers.nextcloud.tls=true"
volumes:
db:
html:
networks:
# enable connection with Traefik
traefik:
external: true
# network for the app
backend: