Skip to content

Commit

Permalink
Create docker-images.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
slapcat authored Dec 23, 2024
1 parent 8d2d2cf commit 146b09d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/docker-images.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Docker Image CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:

build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Build nextcloud
run: docker build . --file images/nextcloud-latest/Dockerfile --tag nextcloud:latest
- name: Build apache
run: docker build . --file images/apache-php/Dockerfile --tag apache-php:latest

0 comments on commit 146b09d

Please sign in to comment.