-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompose.yml
More file actions
67 lines (60 loc) · 1.3 KB
/
compose.yml
File metadata and controls
67 lines (60 loc) · 1.3 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
66
67
services:
toolbox:
build:
context: .
dockerfile: Dockerfile
volumes:
- .:/workspace
- pipx-packages:/home/wanderer/.local/pipx/venvs
environment:
USERNAME: wanderer
USER_UID: 1000
USER_GID: 1000
HOME: /home/wanderer
PATH: /home/wanderer/.local/bin:/usr/local/bin:$PATH
CLAIR_CONF: /workspace/clair_config/local-dev/clair/config.yaml
CLAIR_API: http://clair-traefik:6060
tty: true
stdin_open: true
networks:
- toolbox-net
command: zsh
falco:
extends:
file: falco-compose.yml
service: falco
falco-sidekick:
extends:
file: falco-compose.yml
service: falco-sidekick
falco-webui:
extends:
file: falco-compose.yml
service: falco-webui
ports:
- "2802:2802"
falco-redis:
extends:
file: falco-compose.yml
service: falco-redis
clair-indexer:
extends:
file: clair-compose.yml
service: clair-indexer
clair-matcher:
extends:
file: clair-compose.yml
service: clair-matcher
clair-database:
extends:
file: clair-compose.yml
service: clair-database
clair-traefik:
extends:
file: clair-compose.yml
service: clair-traefik
volumes:
pipx-packages:
networks:
toolbox-net:
driver: bridge