Skip to content

Commit

Permalink
fixed start-ls.sh not enabling pro key docker layer
Browse files Browse the repository at this point in the history
  • Loading branch information
paulrobello committed Jan 24, 2024
1 parent f34ef0d commit 12043ea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ services:
- PROXY_VOLUME_DIR # where to persist cert files. defaults to /tmp/mitproxy
- PROXY_URL # http(s) proxy to use. if USE_PROXY_HOST is enabled will be set to http://PROXY_CONTAINER_NAME:8080
- PROXY_AUTO_EXPORT_ENV # auto export HTTP_PROXY and HTTPS_PROXY vars equal to PROXY_URL
- DEV_CONTAINER=1.10.0 # used to detect if running inside dev container
- DEV_CONTAINER=1.10.1 # used to detect if running inside dev container
volumes:
- /var/run/docker.sock:/var/run/docker.sock # allow container to interact with host docker
- "${GDC_DIR}:/root/gdc-host" # mount gdc folder inside container to get access to compose files
Expand Down
4 changes: 4 additions & 0 deletions root/bin/ls/start-ls.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ fi
if [ "$USE_LOCALSTACK_PERSISTENCE" = "yes" ]; then
COMPOSE_FILES="$COMPOSE_FILES -f dc-ls-persist.yml"
fi
if [ "$USE_LOCALSTACK_PRO" = "yes" ]; then
COMPOSE_FILES="$COMPOSE_FILES -f dc-ls-pro.yml"
fi


if [ -z "$COMPOSE_BIN" ]; then
COMPOSE_BIN="docker compose"
Expand Down

0 comments on commit 12043ea

Please sign in to comment.