forked from strichliste/strichliste-backend
-
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.
- Loading branch information
1 parent
2ffa3b3
commit ff72dab
Showing
3 changed files
with
125 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,83 @@ | ||
name: Build Docker Image | ||
|
||
on: [push] | ||
|
||
defaults: | ||
run: | ||
working-directory: build | ||
|
||
env: | ||
REGISTRY: ghcr.io | ||
IMAGE_NAME: ${{ github.repository }} | ||
|
||
jobs: | ||
build-backend: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
path: build | ||
|
||
- name: Cache Composer dependencies | ||
uses: actions/cache@v2 | ||
with: | ||
path: /tmp/composer-cache | ||
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} | ||
|
||
- name: Build | ||
uses: php-actions/composer@v6 | ||
with: | ||
php_version: "8.3" | ||
dev: no | ||
args: --optimize-autoloader | ||
working_dir: build | ||
|
||
- name: Display structure of files | ||
run: ls -R | ||
|
||
- name: Cleanup | ||
run: | | ||
sudo rm -rf var/cache/* | ||
- name: Upload build artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: backend | ||
path: build | ||
|
||
build-image: | ||
needs: build-backend | ||
runs-on: ubuntu-latest | ||
if: github.ref == 'refs/heads/wamp' | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Download Backend artifacts | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: backend | ||
path: build | ||
|
||
- name: Log in to the Container registry | ||
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 | ||
with: | ||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | ||
|
||
- name: Build and push Docker image | ||
id: push | ||
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4 | ||
with: | ||
context: . | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} |
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 @@ | ||
FROM php:8.3-apache | ||
|
||
RUN docker-php-ext-install pdo_mysql | ||
|
||
COPY ./ /var/www/html | ||
|
||
RUN chown -R www-data:www-data /var/www/html | ||
|
||
# configure apache | ||
COPY ./docker/apache.conf /etc/apache2/sites-available/000-default.conf |
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,32 @@ | ||
User www-data | ||
Group www-data | ||
|
||
<VirtualHost *:80> | ||
ServerName strichliste | ||
|
||
DocumentRoot /var/www/html/public | ||
<Directory /var/www/html/public> | ||
AllowOverride All | ||
Order Allow,Deny | ||
Allow from All | ||
|
||
FallbackResource /index.php | ||
</Directory> | ||
|
||
# uncomment the following lines if you install assets as symlinks | ||
# or run into problems when compiling LESS/Sass/CoffeeScript assets | ||
<Directory /var/www/project> | ||
Options FollowSymlinks | ||
</Directory> | ||
|
||
ErrorLog ${APACHE_LOG_DIR}/error.log | ||
CustomLog ${APACHE_LOG_DIR}/access.log combined | ||
|
||
# Change log to works better behind a reverse proxy | ||
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined | ||
LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" proxy | ||
ErrorLog ${APACHE_LOG_DIR}/error.log | ||
SetEnvIf X-Forwarded-For "^.*\..*\..*\..*" forwarded | ||
CustomLog ${APACHE_LOG_DIR}/access.log combined env=!forwarded | ||
CustomLog ${APACHE_LOG_DIR}/access.log proxy env=forwarded | ||
</VirtualHost> |