From b908113477405671b0f624f6b31d1958348cdf39 Mon Sep 17 00:00:00 2001 From: Young Joon Lee Date: Wed, 3 Jul 2024 15:24:31 +0900 Subject: [PATCH] fix(docker): correct typo in `tty` Jinja2 template variable --- ...pose.`{{ docker_image_variant_name }}`.yaml{% endif %}.jinja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.copier-template/.docker/{% if build_images_from_dockerfile %}docker-compose.`{{ docker_image_variant_name }}`.yaml{% endif %}.jinja b/.copier-template/.docker/{% if build_images_from_dockerfile %}docker-compose.`{{ docker_image_variant_name }}`.yaml{% endif %}.jinja index cfb0173..5e98fc0 100644 --- a/.copier-template/.docker/{% if build_images_from_dockerfile %}docker-compose.`{{ docker_image_variant_name }}`.yaml{% endif %}.jinja +++ b/.copier-template/.docker/{% if build_images_from_dockerfile %}docker-compose.`{{ docker_image_variant_name }}`.yaml{% endif %}.jinja @@ -29,7 +29,7 @@ services: # Sets the hostname of the container hostname: $CONTAINER_HOSTNAME # Sets tty to true if the container needs a pseudo-TTY - tty: `{{ use tty }}` + tty: `{{ use_tty }}` command: # Specifies the command to be executed when the container is run - bash