forked from s045pd/CursedChrome
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-remote.yaml
More file actions
37 lines (37 loc) · 928 Bytes
/
docker-compose-remote.yaml
File metadata and controls
37 lines (37 loc) · 928 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
33
34
35
36
37
version: '3.2'
services:
redis:
image: "redis:alpine"
command: redis-server --appendonly no
db:
image: postgres
restart: always
volumes:
- cursedchrome-db:/var/lib/postgresql/data
environment:
POSTGRES_PASSWORD: cursedchrome
POSTGRES_USER: cursedchrome
POSTGRES_DB: cursedchrome
cursedchrome:
image: "s045pd/cursed_chrome:latest"
volumes:
- cursedchrome-web:/work/cassl
depends_on:
- db
- redis
restart: always
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:
- "8119:8080" # Proxy server
- "4343:4343" # WebSocket server (talks with implants)
- "8118:8118" # Web panel
volumes:
cursedchrome-web:
cursedchrome-db: