-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
53 lines (53 loc) · 1.01 KB
/
docker-compose.yml
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
51
52
53
version: '3.9'
services:
minio:
image: minio/minio
container_name: minio
networks:
- mynetwork
ports:
- "9000:9000"
- "9001:9001"
volumes:
- minio_data:/data
environment:
MINIO_ROOT_USER: minioadmin
MINIO_ROOT_PASSWORD: minioadmin
MINIO_BROWSER_REDIRECT_URL: http://localhost/minio-console/
command: server /data --console-address ":9001"
webviz:
image: cruise/webviz
container_name: webviz
networks:
- mynetwork
expose:
- "8080"
environment:
- CORS_ORIGIN=http://localhost
nicegui:
build: ./nicegui
container_name: nicegui
networks:
- mynetwork
ports:
- "8080:8080"
depends_on:
- minio
- webviz
nginx:
image: nginx:latest
container_name: nginx
networks:
- mynetwork
ports:
- "80:80"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf
depends_on:
- nicegui
- webviz
- minio
volumes:
minio_data:
networks:
mynetwork: