Skip to content

Instantly share code, notes, and snippets.

View thebadmonkeydev's full-sized avatar

Michael Kelly thebadmonkeydev

View GitHub Profile
@thebadmonkeydev
thebadmonkeydev / rails_db_migrate.sh
Created November 7, 2017 08:32 — forked from igorescobar/rails_db_migrate.sh
The correct way to run rails db migration on AWS Beanstalk (Docker Container Environment)
#!/bin/bash
# .ebextensions/scripts/db_migrate.sh
. /opt/elasticbeanstalk/hooks/common.sh
EB_SUPPORT_FILES=$(/opt/elasticbeanstalk/bin/get-config container -k support_files_dir)
EB_CONFIG_DOCKER_ENV_ARGS=()
while read -r ENV_VAR; do
EB_CONFIG_DOCKER_ENV_ARGS+=(--env "$ENV_VAR")