Skip to content

Commit

Permalink
Added build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
foorschtbar committed Jul 27, 2024
1 parent 0affa5d commit a695551
Show file tree
Hide file tree
Showing 9 changed files with 155 additions and 138 deletions.
131 changes: 131 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
name: Build Docker Image

on: [push]

env:
REGISTRY: ghcr.io
IMAGE_NAME: strichliste
SOURCE_BRANCH: "wamp"

jobs:
build-frontend:
name: Build Frontend
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
repository: "Westwoodlabs/strichliste-web-frontend"
ref: ${{ env.SOURCE_BRANCH }}

- name: Use Node.js
uses: actions/setup-node@v4

- name: Install dependencies
run: yarn install

- name: Build Frontend
run: |
export NODE_OPTIONS=--openssl-legacy-provider
CI=false yarn build
- name: Display structure of files
run: ls -R

- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: frontend
path: build

build-backend:
name: Build Backend
needs: build-frontend
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
repository: "Westwoodlabs/strichliste-backend"
ref: ${{ env.SOURCE_BRANCH }}

- name: Build
uses: php-actions/composer@v6
with:
php_version: "8.1"
dev: no
args: --optimize-autoloader

- 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-image:
name: Build and Push Docker Image
needs: build-backend
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Download Backend artifacts
uses: actions/download-artifact@v3
with:
name: backend
path: ./build/

- name: Download Frontend artifacts
uses: actions/download-artifact@v3
with:
name: frontend
path: ./build/public

- name: Display structure of files
run: ls -R

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
# set latest tag for default branch
type=raw,value=latest,enable={{is_default_branch}}
- name: Build and push Docker image
id: docker_build_and_push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm/v7,linux/arm64

- name: Image digests
run: |
echo image digest: ${{ steps.docker_build_and_push.outputs.digest }}

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 ./build/ /var/www/html

RUN chown -R www-data:www-data /var/www/html

# configure apache
COPY ./src/apache.conf /etc/apache2/sites-available/000-default.conf
39 changes: 14 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# strichliste-docker - A Strichliste Docker Container
# strichliste-docker - Strichliste Docker Bundle

This is a docker container for the [strichliste](https://www.strichliste.org/) using the [strichliste frontend and backend bundle](https://github.com/strichliste/strichliste), a MariaDB database and a the Telegram Bot [strichliste-telegram](https://github.com/Westwoodlabs/strichliste-telegram).
This is a docker container for the [strichliste](https://www.strichliste.org/) bundeling the [frontend](https://github.com/Westwoodlabs/strichliste-web-frontend) and [backend](https://github.com/Westwoodlabs/strichliste-backend), a MariaDB database and a the Telegram Bot [strichliste-telegram](https://github.com/Westwoodlabs/strichliste-telegram).

## Usage

- Clone this repository.
- Create settings.env from template and change values.
- Create docker-compose.yml from template and change for your needs (remove treafik for example).
- Create docker-compose.yml from template and change for your needs.
- Setup initial database.

### Setup initial database
Expand All @@ -31,33 +31,24 @@ DATABASE_URL=mysql://strichliste:<changeme>@db/strichliste
Example docker-compose configuration:

```yml
version: "3.8"

services:

web:
build: ./data/web
strichliste:
image: ghcr.io/westwoodlabs/strichliste:latest
restart: unless-stopped
env_file:
- settings.env
networks:
- reverse-proxy
- internal
port:
- 80:80
volumes:
- ./data/web/services.yaml:/var/www/html/config/services.yaml
- ./data/web/strichliste.yaml:/var/www/html/config/strichliste.yaml
- ./data/web/doctrine.yaml:/var/www/html/config/packages/doctrine.yaml
labels:
- "traefik.enable=true"
- "traefik.http.routers.strichliste.rule=Host(`myhostname.fqdn.local`)"
- "traefik.http.routers.strichliste.entryPoints=https"
- "traefik.http.routers.strichliste.tls=true"
- "traefik.http.services.strichliste.loadbalancer.server.scheme=http"
- "traefik.http.services.strichliste.loadbalancer.server.port=80"
restart: unless-stopped
depends_on:
- ./data/strichliste/strichliste.yaml:/var/www/html/config/strichliste.yaml

depends_on:
- db

db:
image: mariadb
image: mariadb:11.4
restart: unless-stopped
env_file:
- settings.env
Expand All @@ -67,7 +58,7 @@ services:
- internal

telegram:
build: ./data/telegram
image: ghcr.io/westwoodlabs/strichliste-telegram:latest
restart: unless-stopped
volumes:
- ./data/telegram/authorizedUsers.json:/usr/src/app/authorizedUsers.json
Expand All @@ -76,8 +67,6 @@ services:
- internal

networks:
reverse-proxy:
external: true
internal:
external: false
```
Expand Down
File renamed without changes.
23 changes: 0 additions & 23 deletions data/telegram/Dockerfile

This file was deleted.

23 changes: 0 additions & 23 deletions data/web/Dockerfile

This file was deleted.

33 changes: 0 additions & 33 deletions data/web/doctrine.yaml

This file was deleted.

34 changes: 0 additions & 34 deletions data/web/services.yaml

This file was deleted.

File renamed without changes.

0 comments on commit a695551

Please sign in to comment.