21 lines
517 B
YAML
21 lines
517 B
YAML
version: '3.8'
|
|
|
|
#==================================================
|
|
# Relies on the file `.env` content for varables:
|
|
# ROOT_DIR
|
|
# JUPYTER_PORT
|
|
#==================================================
|
|
services:
|
|
md_portal:
|
|
image: cloud21.cvtt.vpn:5500/md_portal:latest
|
|
network_mode: host
|
|
container_name: md_portal
|
|
restart: unless-stopped
|
|
environment:
|
|
- JUPYTER_ENABLE_LAB=yes
|
|
volumes:
|
|
- ${ROOT_DIR}/logs:/logs
|
|
ports:
|
|
- "${ADMIN_PORT}:${ADMIN_PORT}"
|
|
shm_size: "8gb"
|