-
Notifications
You must be signed in to change notification settings - Fork 1
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 #3 from imonroe/dockerize
Dockerize
- Loading branch information
Showing
514 changed files
with
229,520 additions
and
3,648 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
COMPOSE_PROJECT_NAME=Coldreader | ||
|
||
MASTER_DB_PORT=3306 | ||
MASTER_DB_DATABASE=homestead | ||
MASTER_DB_USERNAME=homestead | ||
MASTER_DB_PASSWORD=secret | ||
MASTER_MYSQL_ROOT_PASSWORD=Pro@123 | ||
|
||
MASTER_REDIS_PASSWORD=null | ||
MASTER_REDIS_PORT=6379 |
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 |
---|---|---|
@@ -1,16 +1,2 @@ | ||
/node_modules | ||
/public/hot | ||
/public/storage | ||
/storage/*.key | ||
/vendor | ||
/.idea | ||
/.vscode | ||
/.vagrant | ||
Homestead.json | ||
Homestead.yaml | ||
npm-debug.log | ||
yarn-error.log | ||
.env | ||
.env.dusk.local | ||
.env* | ||
/.env.BAK | ||
dbdata/mysql/* | ||
dbdata/postgres/* |
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,66 @@ | ||
FROM php:7.2-fpm | ||
|
||
# Set working directory | ||
WORKDIR /var/www | ||
|
||
# Install dependencies | ||
RUN apt-get update && apt-get install -y \ | ||
build-essential \ | ||
mariadb-client \ | ||
libpng-dev \ | ||
libpq-dev \ | ||
libjpeg62-turbo-dev \ | ||
libfreetype6-dev \ | ||
locales \ | ||
zip \ | ||
jpegoptim optipng pngquant gifsicle \ | ||
vim \ | ||
nano \ | ||
unzip \ | ||
git \ | ||
curl \ | ||
dos2unix \ | ||
cron \ | ||
procps \ | ||
nginx | ||
|
||
# install nodejs | ||
RUN curl sL https://deb.nodesource.com/setup_10.x | bash | ||
RUN apt-get install --yes nodejs && node -v && npm -v | ||
|
||
# Clear cache | ||
RUN apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|
||
# Install extensions | ||
RUN docker-php-ext-install pdo_mysql pdo_pgsql mbstring zip exif pcntl | ||
RUN docker-php-ext-configure gd --with-gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ --with-png-dir=/usr/include/ | ||
RUN docker-php-ext-install gd | ||
|
||
# Install composer | ||
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer | ||
|
||
# Add user for laravel application | ||
RUN groupadd -g 1000 www && useradd -u 1000 -ms /bin/bash -g www www | ||
|
||
# Copy existing application directory and supporting files. | ||
COPY ./application /var/www/ | ||
COPY ./configuration/nginx/conf.d/ /etc/nginx/conf.d/ | ||
COPY ./configuration/php/local.ini /usr/local/etc/php/conf.d/local.ini | ||
|
||
RUN rm -rf /etc/nginx/sites-enabled && mkdir -p /etc/nginx/sites-enabled && chmod -R 777 /var/www/storage | ||
|
||
RUN ln -sf /dev/stdout /var/log/nginx/access.log \ | ||
&& ln -sf /dev/stderr /var/log/nginx/error.log | ||
|
||
# Copy in our helper scripts | ||
COPY wait-for-it.sh / | ||
COPY docker-entry.sh / | ||
|
||
# fix scripts | ||
RUN dos2unix /*.sh && chmod +x /docker-entry.sh && chmod +x /wait-for-it.sh | ||
|
||
# Expose port 80 and start php-fpm server | ||
EXPOSE 80 | ||
|
||
CMD ["/docker-entry.sh"] | ||
|
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
File renamed without changes.
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,15 @@ | ||
/node_modules | ||
/public/hot | ||
/public/storage | ||
/storage/*.key | ||
/vendor | ||
/.idea | ||
/.vscode | ||
/.vagrant | ||
Homestead.json | ||
Homestead.yaml | ||
npm-debug.log | ||
yarn-error.log | ||
.env | ||
.env.dusk.local | ||
/.env.BAK |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
Oops, something went wrong.