-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path.env
executable file
·40 lines (32 loc) · 1.28 KB
/
.env
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
# ##############################
# 3-docker_build
# -----------------------------
DOCKER_CONTAINER_NAME='astro'
# ####################################################
# 4-run_docker
# ----------------------------------------------------
# Names ----------------------------------------------
DOCKER_IMAGE_NAME='astro'
DOCKER_CONTAINER_NAME='astro'
# Ports ----------------------------------------------
PORT_SSH='10022:22'
PORT_TBD='16006:6006' # Only one port for tensorboard
# PORT_TBD='16006-16016:6006-6016' # Ten ports for tensorboard
# DIRS ----------------------------------------------
# '$DIR_HOST' in host => '$DIR_CONT'in container ----
DIR_HOST='/code'
DIR_CONT='/code'
# ADVANCED OPTIONS: Additional Configuration --------
# More ports: -p ------------------------------------
ADDITONAL_CONFIGURATIONS='-p 28097:8097'
# More dirs: -v ------------------------------------
# ADDITONAL_CONFIGURATIONS='-v /dataset:/dataset'
# or you can use both ------------------------------
# ADDITONAL_CONFIGURATIONS='-p 18097:8097 -v /dataset:/dataset'
# ---------------------------------------------------
# ####################################################
# 5-setting_alias
# ----------------------------------------------------
ALIAS_SETTING='true'
ALIAS_NVIDIA_SMI='gpu'
ALIAS_GPUSTAT='gpu2'