-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
65 lines (58 loc) · 1.31 KB
/
docker-compose.yml
File metadata and controls
65 lines (58 loc) · 1.31 KB
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
62
63
64
65
version: '3.8'
# Docker Compose configuration for Traverse CLI tools
# Usage: docker-compose run <service> <args>
# Example: docker-compose run sol2cg /work/contract.sol
services:
sol2cg:
image: traverse:sol2cg
volumes:
- .:/work
working_dir: /work
stdin_open: true
tty: true
environment:
- RUST_LOG=${RUST_LOG:-warn}
sol2test:
image: traverse:sol2test
volumes:
- .:/work
working_dir: /work
stdin_open: true
tty: true
environment:
- RUST_LOG=${RUST_LOG:-info}
sol2bnd:
image: traverse:sol2bnd
volumes:
- .:/work
working_dir: /work
stdin_open: true
tty: true
environment:
- RUST_LOG=${RUST_LOG:-warn}
storage-trace:
image: traverse:storage-trace
volumes:
- .:/work
working_dir: /work
stdin_open: true
tty: true
environment:
- RUST_LOG=${RUST_LOG:-warn}
sol-storage-analyzer:
image: traverse:sol-storage-analyzer
volumes:
- .:/work
working_dir: /work
stdin_open: true
tty: true
environment:
- RUST_LOG=${RUST_LOG:-warn}
# Convenience service for building all images
build:
image: docker:latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- .:/work
working_dir: /work
entrypoint: ["./build-docker-images.sh"]