-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
50 lines (45 loc) · 1.05 KB
/
Copy pathdocker-compose.yml
File metadata and controls
50 lines (45 loc) · 1.05 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
services:
windows:
image: dockurr/windows
networks: [ci-net]
cap_add: [NET_ADMIN]
environment:
VERSION: "11"
RAM_SIZE: "4G"
CPU_CORES: "4"
USER_PORTS: "22"
DISK_CACHE: "writeback"
DISK_IO: "threads"
volumes:
- ./windows/oem:/oem:ro
- windows-data:/storage
restart: unless-stopped
adaptixc2:
image: ghcr.io/tgjls/adaptixc2:1.2
networks:
ci-net:
ipv4_address: 172.28.0.10
restart: unless-stopped
testing-kit:
image: ghcr.io/tgjls/testing-kit:2.1.0
networks: [ci-net]
ports:
- "1234:1234"
environment:
TESTING_KIT_DB: /data/testing_kit.db
TASKS_SEED_PATH: /app/default_tasks.yaml
volumes:
- ./config/config.yaml:/app/config.yaml:ro
- ./config/tasks.yaml:/app/default_tasks.yaml:ro
- ./ssh/id_test:/run/secrets/ssh_key:ro
- testing-kit-db:/data
restart: unless-stopped
networks:
ci-net:
driver: bridge
ipam:
config:
- subnet: 172.28.0.0/16
volumes:
windows-data:
testing-kit-db: