-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (38 loc) · 955 Bytes
/
docker-compose.yml
File metadata and controls
41 lines (38 loc) · 955 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
services:
spectre-server:
container_name: spectre-server
image: spectregrams/spectre-server:3.5.1-alpha
environment:
- SPECTRE_GID=${SPECTRE_GID}
- SPECTRE_BIND_HOST=${SPECTRE_BIND_HOST}
- SPECTRE_BIND_PORT=${SPECTRE_BIND_PORT}
group_add:
- "${SPECTRE_GID}"
networks:
- spectre-network
volumes:
- spectre-data-v3:/app/.spectre-data
devices:
- "/dev/bus/usb"
ports:
- ${SPECTRE_PORT_MAP}
stop_signal: SIGKILL
spectre-cli:
container_name: spectre-cli
image: spectregrams/spectre-cli:3.5.1-alpha
environment:
- SPECTRE_SERVER_HOST=${SPECTRE_SERVER_HOST}
- SPECTRE_SERVER_PORT=${SPECTRE_SERVER_PORT}
networks:
- spectre-network
depends_on:
- spectre-server
tty: true
stop_signal: SIGKILL
networks:
spectre-network:
name: spectre-network
driver: bridge
volumes:
spectre-data-v3:
name: spectre-data-v3