forked from areina/elfeed-cljsrn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
41 lines (38 loc) · 855 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
version: '3'
services:
repl:
build:
context: .
dockerfile: Dockerfile
ports:
- "7888:7888"
- "3449:3449"
volumes:
- .:/usr/src/app:Z
user: "jenkins:shared"
command: lein repl :headless :host 0.0.0.0 :port 7888
reactnative:
build:
context: .
dockerfile: Dockerfile
ports:
- "8081:8081"
# user: "jenkins:shared"
volumes:
- /usr/src/app/node_modules
- .:/usr/src/app:Z
- ~/.gradle:/usr/src/app/android/gradle_deps:Z
command: react-native start
# test:
# build:
# context: .
# dockerfile: Dockerfile-Alternative
# user: "jenkins:shared"
# working_dir: /usr/src/app
# volumes:
# - .:/usr/src/app:Z
# - /usr/src/app/node_modules
# command:
# - tail
# - -f
# - /dev/null