Skip to content

Commit

Permalink
feat(docker): update image version variable name in docker.common.env…
Browse files Browse the repository at this point in the history
….jinja
  • Loading branch information
entelecheia committed Oct 30, 2023
1 parent d74c48b commit f78de66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .copier-template/.docker/docker.common.env.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ HOST_HF_HOME=${HOST_HF_HOME:-"$HOST_CACHE_DIR/huggingface"}
DOCKER_PROJECT_NAME=${APP_NAME:-"`{{ docker_project_name }}`"} # The base name of the Docker image.
DOCKER_PROJECT_ID=${DOCKER_PROJECT_ID:-"default"} # The project ID associated with the Docker image to support multiple projects
DOCKER_USERNAME=${DOCKER_USERNAME:-"`{{ docker_username }}`"} # The username for Docker.
IMAGE_VERSION=${APP_VERSION:-"1.0.0"} # The version of the Docker image. If not set, "1.0.0" will be used.
IMAGE_VERSION=${`{{ docker_image_version_variable_name }}`:-"1.0.0"} # The version of the Docker image. If not set, "1.0.0" will be used.
CONTAINER_REGISTRY=${CONTAINER_REGISTRY:-"`{{ docker_registry }}`"} # The Docker registry to push the image to.
CONTAINER_USERNAME=${USERNAME:-"`{{ docker_container_username }}`"} # The username of the user. If not set, the current user's username will be used.
CONTAINER_USER_UID=${USER_UID:-"`{{ docker_container_uid }}`"} # The user ID in the Docker container.
Expand Down

0 comments on commit f78de66

Please sign in to comment.