forked from npgeorgiou-zz/say
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
35 lines (35 loc) · 899 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
35 lines (35 loc) · 899 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
version: "3"
services:
parser:
build:
context: .
dockerfile: java/Dockerfile
working_dir: /home/parser
volumes:
- ./java/:/home/parser
- ./build/libs/:/home/parser/jar
- ./say:/home/parser/input
- ./sayAST/:/home/parser/output
command: "bash watch.sh"
tty: true
parser-generator:
build:
context: .
dockerfile: parser-generator/Dockerfile
working_dir: /home/parser-generator
volumes:
- ./parser-generator/:/home/parser-generator
# - ./parser/:/home/parser-generator/parser
command: "tail -f /dev/null"
tty: true
transpiler:
build:
context: .
dockerfile: php/Dockerfile
working_dir: /home/transpiler
volumes:
- ./php/:/home/transpiler
- ./sayAst/:/home/transpiler/input
- ./transpiled/:/home/transpiler/output
command: "bash watch.sh"
# tty: true