-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
55 lines (55 loc) · 1.55 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
version: '2'
services:
db:
build: mysql
hostname: reddb
container_name: reddb
environment:
MYSQL_ROOT_PASSWORD: password
expose:
- 3306
volumes:
- /APL/share:/APL/share
- /mysql/data:/var/lib/mysql
redmine:
build:
context: redmine
args:
HTTP_PROXY: ${HTTP_PROXY}
HTTPS_PROXY: ${HTTPS_PROXY}
http_proxy: ${http_proxy}
https_proxy: ${https_proxy}
hostname: redapp
container_name: redapp
environment:
HTTP_PROXY: ""
http_proxy: ""
HTTPS_PROXY: ""
https_proxy: ""
volumes:
- /APL/share:/APL/share
- /APL/docker/redmine/var/www/redmine/plugins:/var/www/redmine/plugins
ports:
- 80:3000
links:
- db
- mmsite
command: bash -c 'while true; do sleep 10; done'
mmsite:
build:
context: mattermost
args:
HTTP_PROXY: ${HTTP_PROXY}
HTTPS_PROXY: ${HTTPS_PROXY}
http_proxy: ${http_proxy}
https_proxy: ${https_proxy}
hostname: mmsite
container_name: mmsite
volumes:
- /APL/share:/APL/share
- /APL/docker/mmsite/usr/local/mattermost/config:/usr/local/mattermost/config
ports:
- 81:81
links:
- db
#command: bash -c 'while true; do sleep 10; done'