-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from khalidmaquilang/feature/docker-sail
Feature | Publish Docker
- Loading branch information
Showing
20 changed files
with
433 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
FROM ubuntu:20.04 | ||
|
||
LABEL maintainer="Taylor Otwell" | ||
|
||
ARG WWWGROUP | ||
ARG NODE_VERSION=16 | ||
ARG POSTGRES_VERSION=13 | ||
|
||
WORKDIR /var/www/html | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
ENV TZ=UTC | ||
|
||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone | ||
|
||
RUN apt-get update \ | ||
&& mkdir -p /etc/apt/keyrings \ | ||
&& apt-get install -y gnupg gosu curl ca-certificates zip unzip git supervisor sqlite3 libcap2-bin libpng-dev python2 dnsutils librsvg2-bin fswatch \ | ||
&& curl -sS 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x14aa40ec0831756756d7f66c4f4ea0aae5267a6c' | gpg --dearmor | tee /usr/share/keyrings/ppa_ondrej_php.gpg > /dev/null \ | ||
&& echo "deb [signed-by=/usr/share/keyrings/ppa_ondrej_php.gpg] https://ppa.launchpadcontent.net/ondrej/php/ubuntu focal main" > /etc/apt/sources.list.d/ppa_ondrej_php.list \ | ||
&& apt-get update \ | ||
&& apt-get install -y php8.0-cli php8.0-dev \ | ||
php8.0-pgsql php8.0-sqlite3 php8.0-gd php8.0-imagick \ | ||
php8.0-curl php8.0-memcached \ | ||
php8.0-imap php8.0-mysql php8.0-mbstring \ | ||
php8.0-xml php8.0-zip php8.0-bcmath php8.0-soap \ | ||
php8.0-intl php8.0-readline php8.0-pcov \ | ||
php8.0-msgpack php8.0-igbinary php8.0-ldap \ | ||
php8.0-redis php8.0-swoole php8.0-xdebug \ | ||
&& curl -sLS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer \ | ||
&& curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \ | ||
&& echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_VERSION.x nodistro main" > /etc/apt/sources.list.d/nodesource.list \ | ||
&& apt-get update \ | ||
&& apt-get install -y nodejs \ | ||
&& npm install -g npm \ | ||
&& npm install -g bun \ | ||
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | tee /usr/share/keyrings/yarnkey.gpg >/dev/null \ | ||
&& echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \ | ||
&& curl -sS https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | tee /usr/share/keyrings/pgdg.gpg >/dev/null \ | ||
&& echo "deb [signed-by=/usr/share/keyrings/pgdg.gpg] http://apt.postgresql.org/pub/repos/apt focal-pgdg main" > /etc/apt/sources.list.d/pgdg.list \ | ||
&& apt-get update \ | ||
&& apt-get install -y yarn \ | ||
&& apt-get install -y mysql-client \ | ||
&& apt-get install -y postgresql-client-$POSTGRES_VERSION \ | ||
&& apt-get -y autoremove \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | ||
|
||
RUN update-alternatives --set php /usr/bin/php8.0 | ||
|
||
RUN setcap "cap_net_bind_service=+ep" /usr/bin/php8.0 | ||
|
||
RUN groupadd --force -g $WWWGROUP sail | ||
RUN useradd -ms /bin/bash --no-user-group -g $WWWGROUP -u 1337 sail | ||
|
||
COPY start-container /usr/local/bin/start-container | ||
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf | ||
COPY php.ini /etc/php/8.0/cli/conf.d/99-sail.ini | ||
RUN chmod +x /usr/local/bin/start-container | ||
|
||
EXPOSE 8000 | ||
|
||
ENTRYPOINT ["start-container"] |
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,7 @@ | ||
[PHP] | ||
post_max_size = 100M | ||
upload_max_filesize = 100M | ||
variables_order = EGPCS | ||
|
||
[opcache] | ||
opcache.enable_cli=1 |
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 @@ | ||
#!/usr/bin/env bash | ||
|
||
if [ ! -z "$WWWUSER" ]; then | ||
usermod -u $WWWUSER sail | ||
fi | ||
|
||
if [ ! -d /.composer ]; then | ||
mkdir /.composer | ||
fi | ||
|
||
chmod -R ugo+rw /.composer | ||
|
||
if [ $# -gt 0 ]; then | ||
exec gosu $WWWUSER "$@" | ||
else | ||
exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf | ||
fi |
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,14 @@ | ||
[supervisord] | ||
nodaemon=true | ||
user=root | ||
logfile=/var/log/supervisor/supervisord.log | ||
pidfile=/var/run/supervisord.pid | ||
|
||
[program:php] | ||
command=/usr/bin/php -d variables_order=EGPCS /var/www/html/artisan serve --host=0.0.0.0 --port=80 | ||
user=sail | ||
environment=LARAVEL_SAIL="1" | ||
stdout_logfile=/dev/stdout | ||
stdout_logfile_maxbytes=0 | ||
stderr_logfile=/dev/stderr | ||
stderr_logfile_maxbytes=0 |
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,62 @@ | ||
FROM ubuntu:22.04 | ||
|
||
LABEL maintainer="Taylor Otwell" | ||
|
||
ARG WWWGROUP | ||
ARG NODE_VERSION=18 | ||
ARG POSTGRES_VERSION=15 | ||
|
||
WORKDIR /var/www/html | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
ENV TZ=UTC | ||
|
||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone | ||
|
||
RUN apt-get update \ | ||
&& mkdir -p /etc/apt/keyrings \ | ||
&& apt-get install -y gnupg gosu curl ca-certificates zip unzip git supervisor sqlite3 libcap2-bin libpng-dev python2 dnsutils librsvg2-bin fswatch \ | ||
&& curl -sS 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x14aa40ec0831756756d7f66c4f4ea0aae5267a6c' | gpg --dearmor | tee /usr/share/keyrings/ppa_ondrej_php.gpg > /dev/null \ | ||
&& echo "deb [signed-by=/usr/share/keyrings/ppa_ondrej_php.gpg] https://ppa.launchpadcontent.net/ondrej/php/ubuntu jammy main" > /etc/apt/sources.list.d/ppa_ondrej_php.list \ | ||
&& apt-get update \ | ||
&& apt-get install -y php8.1-cli php8.1-dev \ | ||
php8.1-pgsql php8.1-sqlite3 php8.1-gd php8.1-imagick \ | ||
php8.1-curl \ | ||
php8.1-imap php8.1-mysql php8.1-mbstring \ | ||
php8.1-xml php8.1-zip php8.1-bcmath php8.1-soap \ | ||
php8.1-intl php8.1-readline \ | ||
php8.1-ldap \ | ||
php8.1-msgpack php8.1-igbinary php8.1-redis php8.1-swoole \ | ||
php8.1-memcached php8.1-pcov php8.1-xdebug \ | ||
&& curl -sLS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer \ | ||
&& curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \ | ||
&& echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_VERSION.x nodistro main" > /etc/apt/sources.list.d/nodesource.list \ | ||
&& apt-get update \ | ||
&& apt-get install -y nodejs \ | ||
&& npm install -g npm \ | ||
&& npm install -g bun \ | ||
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | tee /usr/share/keyrings/yarn.gpg >/dev/null \ | ||
&& echo "deb [signed-by=/usr/share/keyrings/yarn.gpg] https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \ | ||
&& curl -sS https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | tee /usr/share/keyrings/pgdg.gpg >/dev/null \ | ||
&& echo "deb [signed-by=/usr/share/keyrings/pgdg.gpg] http://apt.postgresql.org/pub/repos/apt jammy-pgdg main" > /etc/apt/sources.list.d/pgdg.list \ | ||
&& apt-get update \ | ||
&& apt-get install -y yarn \ | ||
&& apt-get install -y mysql-client \ | ||
&& apt-get install -y postgresql-client-$POSTGRES_VERSION \ | ||
&& apt-get -y autoremove \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | ||
|
||
RUN setcap "cap_net_bind_service=+ep" /usr/bin/php8.1 | ||
|
||
RUN groupadd --force -g $WWWGROUP sail | ||
RUN useradd -ms /bin/bash --no-user-group -g $WWWGROUP -u 1337 sail | ||
|
||
COPY start-container /usr/local/bin/start-container | ||
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf | ||
COPY php.ini /etc/php/8.1/cli/conf.d/99-sail.ini | ||
RUN chmod +x /usr/local/bin/start-container | ||
|
||
EXPOSE 8000 | ||
|
||
ENTRYPOINT ["start-container"] |
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,7 @@ | ||
[PHP] | ||
post_max_size = 100M | ||
upload_max_filesize = 100M | ||
variables_order = EGPCS | ||
|
||
[opcache] | ||
opcache.enable_cli=1 |
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 @@ | ||
#!/usr/bin/env bash | ||
|
||
if [ ! -z "$WWWUSER" ]; then | ||
usermod -u $WWWUSER sail | ||
fi | ||
|
||
if [ ! -d /.composer ]; then | ||
mkdir /.composer | ||
fi | ||
|
||
chmod -R ugo+rw /.composer | ||
|
||
if [ $# -gt 0 ]; then | ||
exec gosu $WWWUSER "$@" | ||
else | ||
exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf | ||
fi |
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,14 @@ | ||
[supervisord] | ||
nodaemon=true | ||
user=root | ||
logfile=/var/log/supervisor/supervisord.log | ||
pidfile=/var/run/supervisord.pid | ||
|
||
[program:php] | ||
command=/usr/bin/php -d variables_order=EGPCS /var/www/html/artisan serve --host=0.0.0.0 --port=80 | ||
user=sail | ||
environment=LARAVEL_SAIL="1" | ||
stdout_logfile=/dev/stdout | ||
stdout_logfile_maxbytes=0 | ||
stderr_logfile=/dev/stderr | ||
stderr_logfile_maxbytes=0 |
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,63 @@ | ||
FROM ubuntu:22.04 | ||
|
||
LABEL maintainer="Taylor Otwell" | ||
|
||
ARG WWWGROUP | ||
ARG NODE_VERSION=18 | ||
ARG POSTGRES_VERSION=15 | ||
|
||
WORKDIR /var/www/html | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
ENV TZ=UTC | ||
|
||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone | ||
|
||
RUN apt-get update \ | ||
&& mkdir -p /etc/apt/keyrings \ | ||
&& apt-get install -y gnupg gosu curl ca-certificates zip unzip git supervisor sqlite3 libcap2-bin libpng-dev python2 dnsutils librsvg2-bin fswatch \ | ||
&& curl -sS 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x14aa40ec0831756756d7f66c4f4ea0aae5267a6c' | gpg --dearmor | tee /etc/apt/keyrings/ppa_ondrej_php.gpg > /dev/null \ | ||
&& echo "deb [signed-by=/etc/apt/keyrings/ppa_ondrej_php.gpg] https://ppa.launchpadcontent.net/ondrej/php/ubuntu jammy main" > /etc/apt/sources.list.d/ppa_ondrej_php.list \ | ||
&& apt-get update \ | ||
&& apt-get install -y php8.2-cli php8.2-dev \ | ||
php8.2-pgsql php8.2-sqlite3 php8.2-gd php8.2-imagick \ | ||
php8.2-curl \ | ||
php8.2-imap php8.2-mysql php8.2-mbstring \ | ||
php8.2-xml php8.2-zip php8.2-bcmath php8.2-soap \ | ||
php8.2-intl php8.2-readline \ | ||
php8.2-ldap \ | ||
php8.2-msgpack php8.2-igbinary php8.2-redis php8.2-swoole \ | ||
php8.2-memcached php8.2-pcov php8.2-xdebug \ | ||
&& curl -sLS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer \ | ||
&& curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \ | ||
&& echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_VERSION.x nodistro main" > /etc/apt/sources.list.d/nodesource.list \ | ||
&& apt-get update \ | ||
&& apt-get install -y nodejs \ | ||
&& npm install -g npm \ | ||
&& npm install -g pnpm \ | ||
&& npm install -g bun \ | ||
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | tee /etc/apt/keyrings/yarn.gpg >/dev/null \ | ||
&& echo "deb [signed-by=/etc/apt/keyrings/yarn.gpg] https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \ | ||
&& curl -sS https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | tee /etc/apt/keyrings/pgdg.gpg >/dev/null \ | ||
&& echo "deb [signed-by=/etc/apt/keyrings/pgdg.gpg] http://apt.postgresql.org/pub/repos/apt jammy-pgdg main" > /etc/apt/sources.list.d/pgdg.list \ | ||
&& apt-get update \ | ||
&& apt-get install -y yarn \ | ||
&& apt-get install -y mysql-client \ | ||
&& apt-get install -y postgresql-client-$POSTGRES_VERSION \ | ||
&& apt-get -y autoremove \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | ||
|
||
RUN setcap "cap_net_bind_service=+ep" /usr/bin/php8.2 | ||
|
||
RUN groupadd --force -g $WWWGROUP sail | ||
RUN useradd -ms /bin/bash --no-user-group -g $WWWGROUP -u 1337 sail | ||
|
||
COPY start-container /usr/local/bin/start-container | ||
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf | ||
COPY php.ini /etc/php/8.2/cli/conf.d/99-sail.ini | ||
RUN chmod +x /usr/local/bin/start-container | ||
|
||
EXPOSE 8000 | ||
|
||
ENTRYPOINT ["start-container"] |
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,7 @@ | ||
[PHP] | ||
post_max_size = 100M | ||
upload_max_filesize = 100M | ||
variables_order = EGPCS | ||
|
||
[opcache] | ||
opcache.enable_cli=1 |
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 @@ | ||
#!/usr/bin/env bash | ||
|
||
if [ ! -z "$WWWUSER" ]; then | ||
usermod -u $WWWUSER sail | ||
fi | ||
|
||
if [ ! -d /.composer ]; then | ||
mkdir /.composer | ||
fi | ||
|
||
chmod -R ugo+rw /.composer | ||
|
||
if [ $# -gt 0 ]; then | ||
exec gosu $WWWUSER "$@" | ||
else | ||
exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf | ||
fi |
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,14 @@ | ||
[supervisord] | ||
nodaemon=true | ||
user=root | ||
logfile=/var/log/supervisor/supervisord.log | ||
pidfile=/var/run/supervisord.pid | ||
|
||
[program:php] | ||
command=/usr/bin/php -d variables_order=EGPCS /var/www/html/artisan serve --host=0.0.0.0 --port=80 | ||
user=sail | ||
environment=LARAVEL_SAIL="1" | ||
stdout_logfile=/dev/stdout | ||
stdout_logfile_maxbytes=0 | ||
stderr_logfile=/dev/stderr | ||
stderr_logfile_maxbytes=0 |
Oops, something went wrong.