I'm trying to wait for migrations, which happen in...
# support-questions
z
I'm trying to wait for migrations, which happen in an init container. Depends does not work in this case, because migrations happen after the containter is started. This works though:
entrypoint: ["/bin/bash", "-c"]
command: "'sleep 30 && docker-entrypoint.sh supertokens start'"