-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
48 lines (48 loc) · 937 Bytes
/
docker-compose.yml
File metadata and controls
48 lines (48 loc) · 937 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
45
46
47
48
dev:
container_name: pygypsy
build: .
env_file: ./env/dev.env
volumes:
- ./:/opt/pygypsy
command: ["/bin/bash", "--rcfile", "/opt/pygypsy/venv/bin/activate"]
test:
container_name: pygypsy
build: .
env_file: ./env/dev.env
volumes:
- ./:/opt/pygypsy
command: 'bash bin/run_tests.sh'
docs:
container_name: pygypsy
build: .
volumes:
- ./:/opt/pygypsy
command: 'bash bin/make_docs.sh'
lint:
container_name: pygypsy
build: .
volumes:
- ./:/opt/pygypsy
command: 'bash bin/lint.sh'
pre-commit:
container_name: pygypsy
build: .
volumes:
- ./:/opt/pygypsy
command: 'bash bin/pre-commit.sh'
notebook:
container_name: pygypsy
build: .
volumes:
- ./:/opt/pygypsy
ports:
- '8888:8888'
command: 'bash bin/run-notebook.sh'
snakeviz:
container_name: pygypsy
build: .
volumes:
- ./:/opt/pygypsy
ports:
- '8889:8889'
entrypoint: 'bash bin/run-snakeviz.sh'