-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (38 loc) · 942 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (38 loc) · 942 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
version: "3.4"
services:
db:
image: postgres:15-alpine
environment:
- "POSTGRES_USER=vantage"
- "POSTGRES_PASSWORD=vantage"
- "POSTGRES_DB=vantage"
- "PGDATA=/data"
ports:
- 5433:5432
volumes:
- ./pgdata:/data
vserver:
image: harbor2.vantage6.ai/infrastructure/server:cotopaxi-live
depends_on:
- db
volumes:
- ./server:/mnt/
ports:
- "5000:5000"
command: >
uwsgi --http :5000 --gevent 1000 --http-websockets
--master --callable app --disable-logging
--wsgi-file /vantage6/vantage6-server/vantage6/server/wsgi.py
--pyargv /mnt/config.yaml
gui:
image: harbor2.vantage6.ai/infrastructure/ui:cotopaxi
depends_on:
- vserver
ports:
- "8080:80"
environment:
- API_URL=http://localhost:5000/api
jupyter:
image: jupyter/minimal-notebook:2023-03-06
ports:
- "8888:8888"