-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
61 lines (53 loc) · 952 Bytes
/
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
version: "3"
services:
nginx:
build: "nginx"
ports:
- "80:80"
ipfs:
image: "ipfs/go-ipfs:v0.4.11"
ports:
- "8080"
- "5001"
volumes:
- "ipfs-data:/data/ipfs"
make-pull:
build: "make-pull"
ports:
- "80"
volumes:
- "ssh-data:/root/.ssh"
- "shared:/data"
environment:
GIT_REPO: ${GIT_REPO}
REPO_DIR: "/data/repo"
make-build:
build: "make-build"
ports:
- "80"
volumes:
- "shared:/data"
environment:
BUILD_DIR: "/data/repo"
make-publish:
build: "make-publish"
ports:
- "80"
volumes:
- "shared:/data"
environment:
IPFS_HOST: "ipfs"
DATA_DIR: "/data/repo/_site"
make:
build: "make"
ports:
- "80"
environment:
ONESHOT_AUTH: "github"
ONESHOT_AUTH_KEY: ${GITHUB_TOKEN}
scheduler:
build: "scheduler"
volumes:
ipfs-data:
ssh-data:
shared: