forked from minecrafthome/minecrafthome
-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
executable file
·57 lines (54 loc) · 1.05 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
volumes:
mysql:
project:
results:
secrets:
letsencrypt:
services:
mysql:
container_name: "mcath_mysql"
build:
context: images/mysql
ports:
- "3306:3306"
volumes:
- "mysql:/var/lib/mysql"
makeproject:
container_name: "mcath_mkproject"
build:
context: images/makeproject
args:
- BOINC_USER
- PROJECT_ROOT
depends_on:
- mysql
volumes:
- "project:$PROJECT_ROOT.dst"
- "secrets:/run/secrets"
environment:
- URL_BASE
- PROJECT
apache:
container_name: "mcath_boinc"
build:
context: images/apache
args:
- BOINC_USER
- PROJECT_ROOT
ports:
- "80:80"
hostname: $PROJECT
depends_on:
- mysql
volumes:
- "project:$PROJECT_ROOT"
- "results:/results"
- "secrets:/run/secrets"
- "/dev/null:/run/secrets/keys/code_sign_private"
- "/var/run/docker.sock:/var/run/docker.sock"
tty: true
environment:
- URL_BASE
- PROJECT
networks:
- default