-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
97 lines (80 loc) · 1.84 KB
/
docker-compose.yml
File metadata and controls
97 lines (80 loc) · 1.84 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
version: '2.3'
services:
#
# Platform Data
#
# Get data from dockerhub to run various services
#
platform_data:
image: docker.jolibrain.com/platform_data:latest
user: ${CURRENT_UID}
volumes:
- ${DD_PLATFORM}:/platform
#
# Deepdetect
#
deepdetect:
image: docker.jolibrain.com/deepdetect_${DD_SERVER_IMAGE}:${DD_SERVER_TAG}
restart: always
user: ${CURRENT_UID}
volumes:
- ${DD_PLATFORM}:/opt/platform
networks:
- platform_docker
#
# Platform UI
#
# modify port 80 to change facade port
#
platform_ui:
image: docker.jolibrain.com/platform_ui:${DD_PLATFORM_UI_TAG}
restart: always
ports:
- '127.0.0.1:${DD_PORT:-1912}:80'
volumes:
- ./config/nginx/nginx.conf:/etc/nginx/nginx.conf
- ${DD_PLATFORM}:/opt/platform
- ./config/platform_ui/config.json:/usr/share/nginx/html/config.json
- ./.env:/usr/share/nginx/html/version
networks:
- platform_docker
#
# Jupyter notebooks
#
jupyter:
image: docker.jolibrain.com/jupyter_dd_notebook:${DD_JUPYTER_TAG}
user: root
environment:
- JUPYTER_LAB_ENABLE=yes
- NB_UID=${MUID}
volumes:
- ${DD_PLATFORM}:/opt/platform
- ${DD_PLATFORM}/notebooks:/home/jovyan/work
networks:
- platform_docker
#
# filebrowser
#
filebrowser:
image: docker.jolibrain.com/filebrowser:${DD_FILEBROWSER_TAG}
restart: always
user: ${CURRENT_UID}
volumes:
- ${DD_PLATFORM}/data:/srv/data
networks:
- platform_docker
#
# real-time log viewer for docker containers
#
dozzle:
image: amir20/dozzle
restart: always
environment:
- DOZZLE_BASE=/docker-logs
volumes:
- /var/run/docker.sock:/var/run/docker.sock
networks:
- platform_docker
networks:
platform_docker:
driver: 'bridge'