[ACA-4715] provide support for Docker variables (#3329)

* provide support for Docker variables

* remove test code

* update docs
This commit is contained in:
Denys Vuika
2023-07-12 08:16:09 +01:00
committed by GitHub
parent 5abbda78a3
commit 1532d65a5b
4 changed files with 149 additions and 1 deletions

View File

@@ -8,4 +8,7 @@ docker rmi -f $DOCKER_IMAGE_REPO
docker build -t $DOCKER_IMAGE_REPO .
echo "http://localhost:${HOST_PORT}"
docker run --rm -it --user 1000:1000 --publish $HOST_PORT:$CONTAINER_PORT $DOCKER_IMAGE_REPO
docker run --rm -it \
--user 1000:1000 \
--publish $HOST_PORT:$CONTAINER_PORT $DOCKER_IMAGE_REPO