forked from aalmah/augmented_cyclegan
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.cfg
33 lines (22 loc) · 1.22 KB
/
Makefile.cfg
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
# Enter project name:
PROJECT_NAME := repl_gen
# Enter command to run docker [default: docker]:
DOCKER := nvidia-docker
# Enter image version [default: latest]:
DOCKER_IMAGE_VERSION := latest
# Enter list of ports to publish (NOTE: Jupyter and Tensorboard ports are automatically published):
PORTS_TO_PUBLISH :=
# Enter list of volumes to mount (NOTE: The current directory is automatically mounted as /eai/project):
VOLUMES_TO_MOUNT := /mnt/projects:/eai/projects /mnt/datasets:/eai/datasets
# Enter list of environment variables to export inside container (NOTE: Hostname and username are automatically exported as 'HOST_HOSTNAME' and 'HOST_USERNAME'):
ENV_VAR_TO_EXPORT :=
# Enter list of files dependency (to trigger image rebuild) [default: Dockerfile]:
IMAGE_FILES_DEPENDENCIES := Dockerfile
# Enter Tensorboard logs directory (NOTE: This directory should relative to the current directory, which gets mounted as /eai in the container.) [default: tensorboard_logs]:
TENSORBOARD_DIR := model_logs
# Enter 'docker build' extra arguments:
DOCKER_BUILD_EXTRA :=
# Enter 'docker run' extra arguments:
DOCKER_RUN_EXTRA :=
# Enter 1 to autogenerate .dockerignore file [default: 0 otherwise]:
AUTO_GENERATE_DOCKER_IGNORE := 0 otherwise