We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--env-file
aptible deploy
It would be great if aptible deploy had an option to synchronize the Aptible Configuration via a file.
Currently we can supply environment variables via aptible deploy as per the docs like
aptible deploy \ --app "$APP_HANDLE" \ --docker-image "$DOCKER_IMAGE" \ FOO=BAR QUX=
It would be awesome if you could add support for an --env-file option or similar, so that the configuration can be set during deploy like so
aptible deploy \ --app $APP_HANDLE \ --docker-image $DOCKER_IMAGE \ --env-file .env.aptible
I am currently instead doing the following
aptible deploy \ --app $APP_HANDLE \ --docker-image $DOCKER_IMAGE \ ${test -f .env.aptible && paste -s -d ' ' .env.aptible}
If this is fixed, it could also make sense to add a similar option to aptible config:set
aptible config:set
Thank you for the great product and CLI!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be great if
aptible deploy
had an option to synchronize the Aptible Configuration via a file.Currently we can supply environment variables via
aptible deploy
as per the docs likeIt would be awesome if you could add support for an
--env-file
option or similar, so that the configuration can be set during deploy like soI am currently instead doing the following
If this is fixed, it could also make sense to add a similar option to
aptible config:set
Thank you for the great product and CLI!
The text was updated successfully, but these errors were encountered: