From f802c83af2c3813bfab9a86fa971ce28d775e3ea Mon Sep 17 00:00:00 2001 From: kthoden Date: Fri, 2 Jul 2021 12:17:42 +0200 Subject: [PATCH] Add a port in Docker compose Apparently, this is obligatory now --- docker-compose.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 7b6319f..ceb6187 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,7 +1,7 @@ version: '3.7' services: - + eoa_skripts: build: . image: ${IMAGE_NAME} @@ -19,7 +19,8 @@ services: - OUTPUT_DIR=${OUTPUT_DIR_IN_CONTAINER} - DEPENDENCIES_DIR=${DEPENDENCIES_DIR_IN_CONTAINER} - EOA_SCRIPTS_DIR=${SRC_DIR_IN_CONTAINER} - ports: [] + ports: + - 17020 user: ${USER}:${GROUP} working_dir: ${HOME_DIR_IN_CONTAINER} tty: true