forked from ret2shell/ret2shell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
65 lines (59 loc) · 1.22 KB
/
Copy pathdocker-compose.dev.yml
File metadata and controls
65 lines (59 loc) · 1.22 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
name: ret2shell-dev
services:
# database
database:
image: postgres:18-alpine
restart: always
environment:
POSTGRES_PASSWORD: $POSTGRES_PASSWORD
POSTGRES_USER: ret2shell
POSTGRES_DB: ret2shell
PGDATA: /var/lib/postgresql/data
volumes:
- database:/var/lib/postgresql/data
ports:
- "5432:5432"
# cache
cache:
image: valkey/valkey:8-alpine
restart: always
volumes:
- cache:/data
ports:
- "6379:6379"
# message queue
message_queue:
image: nats:2-alpine
restart: always
volumes:
- message_queue:/data
ports:
- "4222:4222"
command: ["-js", "-sd", "/data"]
# logs
vlogs:
image: victoriametrics/victoria-logs:v1.43.1
restart: always
ports:
- "9428:9428"
command:
- "--storageDataPath=/vlogs"
volumes:
- vlogs:/vlogs
# container registry
registry:
image: registry:3
restart: unless-stopped
environment:
REGISTRY_STORAGE_DELETE_ENABLED: "true"
REGISTRY_STORAGE_FILESYSTEM_ROOTDIRECTORY: /var/lib/registry
volumes:
- registry:/var/lib/registry
ports:
- "5000:5000"
volumes:
database:
cache:
message_queue:
vlogs:
registry: