-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bumped php to version 8.2 * Bumped galette version to 1.0.3 * More comprehensive how-to. Now describes how to create the container once and use it without recreating it after configurating galette (as was written before). * Contribution guide added for future maintaners and contributors
- Loading branch information
Showing
5 changed files
with
100 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Using PHP-Apache image | ||
FROM galette/galette:1.0.2 | ||
USER root | ||
RUN apt-get -y update \ | ||
&& apt-get install --no-install-recommends -y \ | ||
mariadb-server=1:10.11* \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
ENV MYSQL_ROOT_PASSWORD=myrootpassword | ||
ENV MYSQL_DATABASE=galette | ||
ENV MYSQL_USER=galette | ||
ENV MYSQL_PASSWORD=galette_pass | ||
ENV MYSQL_PORT=3306 | ||
RUN mkdir /run/mysqld/ | ||
USER mysql:mysql | ||
CMD ["mysqld_safe"] | ||
USER www-data:www-data |