-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
50 lines (46 loc) · 941 Bytes
/
docker-compose.yml
File metadata and controls
50 lines (46 loc) · 941 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
38
39
40
41
42
43
44
45
46
47
48
49
50
services:
proxstar-redis:
image: docker.io/library/redis:alpine
networks:
- proxstar
restart: always
proxstar-postgres:
build:
context: ./proxstar-postgres
environment:
POSTGRES_PASSWORD: changeme
ports:
- "5432:5432"
volumes:
- ./proxstar-postgres/volume:/var/lib/postgresql/data:Z
networks:
- proxstar
restart: always
proxstar-rq-scheduler:
build:
context: ..
env_file: .env
entrypoint: ./start_scheduler.sh
networks:
- proxstar
restart: always
proxstar-rq:
build:
context: ..
env_file: .env
entrypoint: ./start_worker.sh
networks:
- proxstar
restart: always
proxstar:
build:
context: ..
ports:
- "8000:8000"
- "8001:8001"
env_file: .env
entrypoint: ["gunicorn", "proxstar:app", "--bind=0.0.0.0:8000"]
networks:
- proxstar
networks:
proxstar: