Create database.yml via Dockerfile
This commit is contained in:
parent
6d9c35db20
commit
ae11931ca5
2 changed files with 12 additions and 11 deletions
|
@ -30,13 +30,14 @@ RUN buildDeps='libmagic-dev' && \
|
||||||
bundle exec whenever >crontab
|
bundle exec whenever >crontab
|
||||||
|
|
||||||
# compile assets with temporary mysql server
|
# compile assets with temporary mysql server
|
||||||
RUN export DATABASE_URL=mysql2://localhost/temp && \
|
RUN export DATABASE_URL=mysql2://localhost/temp?encoding=utf8 && \
|
||||||
export SECRET_KEY_BASE=thisisnotimportantnow && \
|
export SECRET_KEY_BASE=thisisnotimportantnow && \
|
||||||
export DEBIAN_FRONTEND=noninteractive && \
|
export DEBIAN_FRONTEND=noninteractive && \
|
||||||
apt-get update && \
|
apt-get update && \
|
||||||
apt-get install -y mariadb-server && \
|
apt-get install -y mariadb-server && \
|
||||||
/etc/init.d/mysql start && \
|
/etc/init.d/mysql start && \
|
||||||
cp config/app_config.yml.SAMPLE config/app_config.yml && \
|
cp config/app_config.yml.SAMPLE config/app_config.yml && \
|
||||||
|
cp config/database.yml.MySQL_SAMPLE config/database.yml && \
|
||||||
bundle exec rake db:setup assets:precompile && \
|
bundle exec rake db:setup assets:precompile && \
|
||||||
rm -Rf config/app_config.yml tmp/* && \
|
rm -Rf config/app_config.yml tmp/* && \
|
||||||
/etc/init.d/mysql stop && \
|
/etc/init.d/mysql stop && \
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
# http://dev.mysql.com/doc/refman/5.0/en/old-client.html
|
# http://dev.mysql.com/doc/refman/5.0/en/old-client.html
|
||||||
development:
|
development:
|
||||||
adapter: mysql2
|
adapter: mysql2
|
||||||
encoding: utf8
|
encoding: utf8mb4
|
||||||
reconnect: false
|
reconnect: false
|
||||||
database: foodsoft_development
|
database: foodsoft_development
|
||||||
pool: 5
|
pool: 5
|
||||||
|
@ -27,7 +27,7 @@ development:
|
||||||
# Do not set this db to the same as development or production.
|
# Do not set this db to the same as development or production.
|
||||||
test:
|
test:
|
||||||
adapter: mysql2
|
adapter: mysql2
|
||||||
encoding: utf8
|
encoding: utf8mb4
|
||||||
reconnect: false
|
reconnect: false
|
||||||
database: foodsoft_test
|
database: foodsoft_test
|
||||||
pool: 5
|
pool: 5
|
||||||
|
@ -36,11 +36,11 @@ test:
|
||||||
|
|
||||||
production:
|
production:
|
||||||
adapter: mysql2
|
adapter: mysql2
|
||||||
encoding: utf8
|
encoding: utf8mb4
|
||||||
reconnect: false
|
reconnect: false
|
||||||
database: foodsoft_production
|
|
||||||
pool: 5
|
pool: 5
|
||||||
host: localhost
|
host: <%= ENV['FOODSOFT_DB_HOST'] %>
|
||||||
username: root
|
database: <%= ENV['FOODSOFT_DB_NAME'] %>
|
||||||
password: password
|
username: <%= ENV['FOODSOFT_DB_USER'] %>
|
||||||
|
password: <%= ENV['FOODSOFT_DB_PASSWORD'] %>
|
||||||
# socket: /tmp/mysql.sock
|
# socket: /tmp/mysql.sock
|
||||||
|
|
Loading…
Reference in a new issue