-
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 #1 from he4rt/deploy
Add infrastructure
- Loading branch information
Showing
6 changed files
with
42 additions
and
0 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,5 @@ | ||
node_modules | ||
vendor | ||
.git | ||
.idea | ||
|
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,30 @@ | ||
FROM node:19 as static-assets | ||
WORKDIR /app | ||
COPY . . | ||
RUN npm install | ||
RUN npm run build | ||
|
||
FROM serversideup/php:8.2-fpm-nginx | ||
WORKDIR /var/www/html | ||
ARG POSTGRES_VERSION=15 | ||
RUN apt-get update && apt-get install -y php-pgsql | ||
RUN apt-get -y autoremove && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/* | ||
|
||
COPY composer.json composer.lock ./ | ||
RUN composer install --no-dev --no-interaction --no-plugins --no-scripts --prefer-dist | ||
|
||
COPY --chown=9999:9999 . . | ||
RUN composer dump-autoload | ||
|
||
COPY --from=static-assets --chown=9999:9999 /app/public/build ./public/build | ||
#COPY --chmod=755 docker/prod-ssu/etc/s6-overlay/ /etc/s6-overlay/ | ||
|
||
RUN php artisan route:cache | ||
RUN php artisan view:cache | ||
|
||
RUN echo "alias ll='ls -al'" >>/etc/bash.bashrc | ||
RUN echo "alias a='php artisan'" >>/etc/bash.bashrc | ||
RUN echo "alias mfs='php artisan migrate:fresh --seed'" >>/etc/bash.bashrc | ||
RUN echo "alias cda='composer dump-autoload'" >>/etc/bash.bashrc | ||
RUN echo "alias run='./scripts/run'" >>/etc/bash.bashrc | ||
RUN echo "alias logs='tail -f storage/logs/laravel.log'" >>/etc/bash.bashrc |
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 @@ | ||
oneshot |
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,2 @@ | ||
#!/command/execlineb -P | ||
php /var/www/html/artisan migrate --force --isolated |
Empty file.
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,4 @@ | ||
# Custom nginx configuration | ||
|
||
# Disable access logs | ||
access_log off; |