Create database.yml via Dockerfile

This commit is contained in:
Patrick Gansterer 2018-12-18 15:19:55 +01:00
parent 6d9c35db20
commit ae11931ca5
2 changed files with 12 additions and 11 deletions

View file

@ -30,13 +30,14 @@ RUN buildDeps='libmagic-dev' && \
bundle exec whenever >crontab
# 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 DEBIAN_FRONTEND=noninteractive && \
apt-get update && \
apt-get install -y mariadb-server && \
/etc/init.d/mysql start && \
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 && \
rm -Rf config/app_config.yml tmp/* && \
/etc/init.d/mysql stop && \

View file

@ -15,7 +15,7 @@
# http://dev.mysql.com/doc/refman/5.0/en/old-client.html
development:
adapter: mysql2
encoding: utf8
encoding: utf8mb4
reconnect: false
database: foodsoft_development
pool: 5
@ -27,7 +27,7 @@ development:
# Do not set this db to the same as development or production.
test:
adapter: mysql2
encoding: utf8
encoding: utf8mb4
reconnect: false
database: foodsoft_test
pool: 5
@ -36,11 +36,11 @@ test:
production:
adapter: mysql2
encoding: utf8
encoding: utf8mb4
reconnect: false
database: foodsoft_production
pool: 5
host: localhost
username: root
password: password
host: <%= ENV['FOODSOFT_DB_HOST'] %>
database: <%= ENV['FOODSOFT_DB_NAME'] %>
username: <%= ENV['FOODSOFT_DB_USER'] %>
password: <%= ENV['FOODSOFT_DB_PASSWORD'] %>
# socket: /tmp/mysql.sock