Compare commits
13 Commits
ffe9931557
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| f15f323daa | |||
| 8b0418f289 | |||
| 7218c36309 | |||
|
|
cc51a92d23 | ||
|
|
f6a0e6f1a8 | ||
|
|
0cfd792018 | ||
|
|
e3248b6a01 | ||
|
|
18f5f948d2 | ||
|
|
50f292f808 | ||
|
|
5944787d6d | ||
|
|
456101b7b8 | ||
|
|
ba7b6f4e8b | ||
|
|
4d3dd2626d |
@@ -16,17 +16,17 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: docker/setup-qemu-action@v2
|
- uses: docker/setup-qemu-action@v3
|
||||||
- uses: docker/setup-buildx-action@v2
|
- uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
- name: Login to Docker Hub
|
- name: Login to Docker Hub
|
||||||
uses: docker/login-action@v2
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Login to Container registry
|
- name: Login to Container registry
|
||||||
uses: docker/login-action@v2
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: ${{ github.actor }}
|
username: ${{ github.actor }}
|
||||||
@@ -34,7 +34,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Docker meta
|
- name: Docker meta
|
||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@v4
|
uses: docker/metadata-action@v5
|
||||||
with:
|
with:
|
||||||
tags: |
|
tags: |
|
||||||
type=ref,event=branch
|
type=ref,event=branch
|
||||||
@@ -46,7 +46,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Build and push
|
- name: Build and push
|
||||||
id: docker_build
|
id: docker_build
|
||||||
uses: docker/build-push-action@v4
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
FROM alpine:3.17
|
FROM alpine:3.17
|
||||||
|
|
||||||
LABEL maintainer="selim013@gmail.com"
|
LABEL maintainer="git@avii.nl"
|
||||||
|
|
||||||
RUN apk add --no-cache curl \
|
RUN apk add --no-cache curl \
|
||||||
imagemagick \
|
imagemagick \
|
||||||
@@ -27,8 +27,8 @@ RUN apk add --no-cache curl \
|
|||||||
su-exec
|
su-exec
|
||||||
|
|
||||||
### phpBB
|
### phpBB
|
||||||
ENV PHPBB_VERSION 3.3.9
|
ENV PHPBB_VERSION 3.3.16
|
||||||
ENV PHPBB_SHA256 8eacc10caff2327d51019ed2677b55ff1afdc68a3a7aaeee9ac29747775fe04f
|
ENV PHPBB_SHA256 d1964a2b0cae7d5ba761e5a77467075b463348fb6e8189ed539f09e7d98ce505
|
||||||
|
|
||||||
WORKDIR /tmp
|
WORKDIR /tmp
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,8 @@ volumes:
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
phpbb:
|
phpbb:
|
||||||
image: selim13/phpbb:3.3
|
build: .
|
||||||
|
image: git.avii.nl/avii/phpbb:3.3
|
||||||
ports:
|
ports:
|
||||||
- '127.0.0.1:8000:80'
|
- '127.0.0.1:8000:80'
|
||||||
volumes:
|
volumes:
|
||||||
|
|||||||
Reference in New Issue
Block a user