Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
foorschtbar committed Jul 23, 2024
1 parent 2ffa3b3 commit 0db06e9
Show file tree
Hide file tree
Showing 3 changed files with 136 additions and 0 deletions.
94 changes: 94 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
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.1"
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


- name: compress backend
run: |
tar -czf strichliste-backend.tar.gz .env *
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: backend2
path: strichliste-backend.tar.gz

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 }}
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM php:8.1-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
32 changes: 32 additions & 0 deletions docker/apache.conf
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>

0 comments on commit 0db06e9

Please sign in to comment.