Spaces:
Sleeping
Sleeping
Commit
·
950e180
1
Parent(s):
daf5ef3
private data deleted
Browse files- docker/.env +29 -0
docker/.env
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# The name of the docker-compose project
|
2 |
+
COMPOSE_PROJECT_NAME=dvats
|
3 |
+
# The user ID you are using to run docker-compose
|
4 |
+
USER_ID=1004
|
5 |
+
# The group ID you are using to run docker-compose (you can get it with id -g in a terminal)
|
6 |
+
GROUP_ID=1004
|
7 |
+
# The user name assigned to the user id
|
8 |
+
USER_NAME=yourusername
|
9 |
+
# The port from which you want to access Jupyter lab
|
10 |
+
JUPYTER_PORT=7861
|
11 |
+
# The token used to access (like a password)
|
12 |
+
JUPYTER_TOKEN=password
|
13 |
+
# The path toz your data files to train/test the models
|
14 |
+
LOCAL_DATA_PATH=/home/yourusername/work_dir
|
15 |
+
# The W&B entity
|
16 |
+
WANDB_ENTITY=youruser
|
17 |
+
# The W&B project
|
18 |
+
WANDB_PROJECT=deepvats
|
19 |
+
# The W&B personal API key (see https://wandb.ai/authorize)
|
20 |
+
WANDB_API_KEY=yourkey
|
21 |
+
# List of comma separated GPU indices that will be available in the container (by default only 0, the first one)
|
22 |
+
CUDA_VISIBLE_DEVICES=0,1,2,3
|
23 |
+
# Github PAT (see https://docs.github.com/en/github/authenticating-to-github/keeping-your-account-and>
|
24 |
+
GH_TOKEN=yourtoken
|
25 |
+
# Port in which you want Rstudio server to be deployed (for developing in the front end)
|
26 |
+
RSTUDIO_PORT=7862
|
27 |
+
# Password to access the Rstudio server
|
28 |
+
RSTUDIO_PASSWD=password
|
29 |
+
|