You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the Build Secrets doc, it mentions in both the Dockerfile and deploy command that it is possible to mount and pass multiple build secrets:
# Note: You can mount multiple secretsRUN --mount=type=secret,id=MY_SUPER_SECRET \
MY_SUPER_SECRET="$(cat /run/secrets/MY_SUPER_SECRET)" some_command \
&& more_commands_maybe
# Note: You can pass multiple secrets if you need
fly deploy \
--build-secret MY_SUPER_SECRET=some_value
It's not clear what the syntax should be for passing multiple secrets. Could an example be shown for multiple secrets, please?
The text was updated successfully, but these errors were encountered:
In the Build Secrets doc, it mentions in both the Dockerfile and deploy command that it is possible to mount and pass multiple build secrets:
# Note: You can pass multiple secrets if you need fly deploy \ --build-secret MY_SUPER_SECRET=some_value
It's not clear what the syntax should be for passing multiple secrets. Could an example be shown for multiple secrets, please?
The text was updated successfully, but these errors were encountered: