forked from mavam/trac-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
68 lines (54 loc) · 1.13 KB
/
docker-compose.yml
File metadata and controls
68 lines (54 loc) · 1.13 KB
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
version: "2"
services:
tracd:
image: solsson/trac:engine
restart: unless-stopped
volumes:
- ../trac-env/:/trac
ports:
- 81:80
links:
- mysql
depends_on:
- mysql
command: ["-s", "/trac", "--auth", "*,/trac/conf/digest_passwd,pjtadmin"]
mysql:
image: mysql:5.7
restart: unless-stopped
environment:
- MYSQL_ROOT_PASSWORD=password
ports:
- 3306:3306
volumes:
- mysql:/var/lib/mysql
gitlab:
image: gitlab/gitlab-ce:latest
ports:
- 443:443
- 80:80
- 22:22
container_name: gitlab
restart: unless-stopped
volumes:
- /Users/beweiche/gitlab/config:/etc/gitlab
- /Users/beweiche/gitlab/logs:/var/log/gitlab
- /Users/beweiche/gitlab/data:/var/opt/gitlab
trac-hub:
image: bwl21/trac-hub
build: .
restart: unless-stopped
volumes:
- ..:/usr/src/myapp
- /Users/beweiche/gitlab/data:/var/opt/gitlab
links:
- mysql
depends_on:
- mysql
working_dir: /usr/src/myapp/trac-hub
entrypoint: ./trac-hub
command: -h
volumes:
mysql: {
}
www: {}
log: {}