You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 6, 2023. It is now read-only.
RUN sed -i "s/database_password: ~/database_password: password/g" app/config/parameters.yml
ADD https://getcomposer.org/composer.phar .
ADD composer.json .
ADD composer.lock .
ADD app/config app/config
RUN php composer.phar install
RUN service mysql start && mysql -e "CREATE USER 'insalan'@'localhost' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON *.* TO 'insalan'@'localhost'; FLUSH PRIVILEGES;" && php bin/console doctrine:database:create && ./load_fixtures.sh && php bin/console assets:install && php bin/console assetic:dump
EXPOSE 8000
ENTRYPOINT service mysql start && php bin/console server:run 0.0.0.0