Skip to content

Commit

Permalink
Commit dockerctl image instances support
Browse files Browse the repository at this point in the history
  • Loading branch information
dgpetrie committed Sep 27, 2023
1 parent 3f845ca commit 82123d9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion vcon/docker_dev/dockerctl.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
#!/bin/bash

# configuration
if [ -z "${IMAGE_INSTANCE}" ]
then
echo "IMAGE_INSTANCE not set"
exit 3
fi

IMAGE_NAME="vcon_core_pydev3_8"
IMAGE_NAME="vcon_core_pydev3_8_${IMAGE_INSTANCE}"
CONTAINER_NAME="${IMAGE_NAME}_container"
CONTAINER_HOSTNAME="${IMAGE_NAME}_${HOSTNAME}"

Expand Down

0 comments on commit 82123d9

Please sign in to comment.