-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
43 lines (41 loc) · 1.02 KB
/
docker-compose.yml
File metadata and controls
43 lines (41 loc) · 1.02 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
version: '3.8'
services:
backend:
build:
context: .
dockerfile: Dockerfile.backend
container_name: sce-sign2
ports:
- "8080:8080"
volumes:
- ~/.ssh/id_ed25519-tunnel.pub:/app/ssh_key.pub
- ~/.ssh/id_ed25519-tunnel:/app/ssh_key
- ~/.ssh/known_hosts:/app/known_hosts
- ./config:/app/config
- ./freak.sh:/app/freak.sh
- ./modules:/app/modules
- ./server.py:/app/server.py
- ./server_config.yml:/app/server_config.yml
- ./requirements.txt:/app/requirements.txt
- ./users.db:/app/users.db
- ./phone:/app/phone
restart: unless-stopped
environment:
- PYTHONUNBUFFERED=1
emulator:
build:
context: .
dockerfile: Dockerfile.emulator
container_name: sce-sign2-emulator
ports:
- "8888:8888"
volumes:
- ./modules:/app/modules
- ./emulator.py:/app/emulator.py
restart: unless-stopped
environment:
- PYTHONUNBUFFERED=1
networks:
default:
external:
name: poweredge