create start-up script for migration
This commit is contained in:
@@ -17,19 +17,22 @@ ENV DB_SERVER=db \
|
||||
ENV DEV_DB_HOST=db \
|
||||
DEV_DB_NAME=ricoh_dash \
|
||||
DEV_DB_USER=developer \
|
||||
DEV_DB_PASS=developer
|
||||
DEV_DB_PASS=developer \
|
||||
DEV_DB_PORT=3306
|
||||
|
||||
ENV PROD_DB_HOST=db \
|
||||
PROD_DB_NAME=ricoh_dash \
|
||||
PROD_DB_USER=developer \
|
||||
PROD_DB_PASS=developer
|
||||
PROD_DB_PASS=developer \
|
||||
DEV_DB_PORT=3306
|
||||
|
||||
ENV TEST_DB_HOST=db \
|
||||
TEST_DB_NAME=ricoh_dash \
|
||||
TEST_DB_USER=developer \
|
||||
TEST_DB_PASS=developer
|
||||
TEST_DB_PASS=developer \
|
||||
DEV_DB_PORT=3306
|
||||
|
||||
RUN apt-get update && apt-get install -y git unzip gnupg
|
||||
RUN apt-get update && apt-get install -y git unzip gnupg mysql-client
|
||||
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash -
|
||||
RUN apt-get install -y nodejs
|
||||
|
||||
@@ -38,8 +41,9 @@ RUN a2enmod rewrite
|
||||
|
||||
COPY docker/php/apache2.conf /etc/apache2/
|
||||
COPY docker/php/composer.phar /usr/local/bin/composer
|
||||
COPY docker/php/startup.sh /init-scripts/
|
||||
|
||||
RUN chmod 755 /usr/local/bin/composer
|
||||
RUN chmod 755 /usr/local/bin/composer && chmod +x /init-scripts/startup.sh
|
||||
|
||||
COPY api-wiaas /home/wiaas/api-wiaas
|
||||
COPY client-wiaas /home/wiaas/client-wiaas
|
||||
@@ -55,4 +59,6 @@ RUN npm rebuild node-sass --force
|
||||
RUN npm install && npm run build
|
||||
RUN cp -r build/* /var/www/html/
|
||||
|
||||
COPY docker/php/.htaccess /var/www/html/
|
||||
COPY docker/php/.htaccess /var/www/html/
|
||||
|
||||
CMD /init-scripts/startup.sh
|
||||
Reference in New Issue
Block a user