-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
44 lines (41 loc) · 914 Bytes
/
docker-compose.yml
File metadata and controls
44 lines (41 loc) · 914 Bytes
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
version: "3.7"
services:
corebase:
build:
context: ./base
dockerfile: Dockerfile
target: corebase
image: "drudge:corebase"
base:
build:
context: ./base
dockerfile: Dockerfile
target: base
image: "drudge:base"
drudge:
build:
context: ./drudge
dockerfile: Dockerfile
image: "drudge:drudge"
# Service for developmental purpose.
volumes:
- type: bind
source: ./drudge
target: /home/src/drudge
- type: bind
source: ./work
target: /home/work
command: ["sleep", "infinity"]
gristmill:
build:
context: ./gristmill
dockerfile: Dockerfile
image: "drudge:gristmill"
volumes:
- type: bind
source: ./gristmill
target: /home/src/gristmill
- type: bind
source: ./work
target: /home/work
command: ["sleep", "infinity"]