docker run --pull always -it --rm temporalio/auto-setup develop
Result;
latest: Pulling from temporalio/auto-setup
Digest: sha256:10e8c557ace5fa4aa99217637e7b9969316e89b929a3bfb117853a5417eef25c
Status: Image is up to date for temporalio/auto-setup:latest
TEMPORAL_ADDRESS is not set, setting it to 172.17.0.2:7233
/etc/temporal/entrypoint.sh: line 40: /etc/temporal/setup-develop.sh: No such file or directory
The entrypoint:
# Setup Temporal Server in development mode if "develop" is passed as an argument.
for arg; do
if [[ ${arg} == develop ]]; then
/etc/temporal/setup-develop.sh
break
fi
done
What are you really trying to do?
Is it possible to create dev environment with temporal docker image ?
develop
tagMinimal Reproduction
Result;
The entrypoint: