-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
30 lines (24 loc) · 899 Bytes
/
docker-compose.yaml
File metadata and controls
30 lines (24 loc) · 899 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
# See: https://github.com/VirusTrack/COVIDvu/blob/master/LICENSE
# vim: set fileencoding=utf-8:
# Environment:
#
# COVIDVU_JUPYTER_MOUNT_POINT container mount point for /home/jovyanV
# COVIDVU_NIC_BIND container host IP address/NIC; can be 127.0.0.1
# or 0.0.0.0
# COVIDVU_PORT_BIND container host port
#
# Set your custom environment values in ./run.env - Git ignores this file.
version: '3'
services:
covidvu_cime_dev:
container_name: 'covidvu_cime_dev'
environment:
GRANT_SUDO : 'yes'
JUPYTER_LAB_ENABLE : 'yes'
image: 'pr3d4t0r/covidvu:latest'
ports:
- '${COVIDVU_NIC_BIND}:${COVIDVU_PORT_BIND}:8888'
privileged: true
user: 'root:${JUPYTER_LAB_GROUP}'
volumes:
- ${COVIDVU_JUPYTER_MOUNT_POINT}:/home/jovyan