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 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 && \

View file

@ -4,7 +4,7 @@
# #
# #
# MySQL versions 4.1 and 5.0 are recommended. # MySQL versions 4.1 and 5.0 are recommended.
# #
# Install the MYSQL driver # Install the MYSQL driver
# gem install mysql2 # gem install mysql2
# #
@ -15,32 +15,32 @@
# 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
host: localhost host: localhost
# socket: /tmp/mysql.sock # socket: /tmp/mysql.sock
# Warning: The database defined as "test" will be erased and # Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake". # re-generated from your development database when you run "rake".
# 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
host: localhost host: localhost
# socket: /tmp/mysql.sock # socket: /tmp/mysql.sock
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