Compare commits

...

11 Commits

Author SHA1 Message Date
7218c36309 update
Some checks failed
Deploy docker image / deploy (push) Has been cancelled
2026-05-10 18:53:31 +02:00
Dmitry Seleznyov
cc51a92d23 Merge pull request #11 from selim13/dependabot/github_actions/docker/setup-qemu-action-3
Bump docker/setup-qemu-action from 2 to 3
2023-09-14 16:23:40 +03:00
dependabot[bot]
f6a0e6f1a8 Bump docker/setup-qemu-action from 2 to 3
Bumps [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) from 2 to 3.
- [Release notes](https://github.com/docker/setup-qemu-action/releases)
- [Commits](https://github.com/docker/setup-qemu-action/compare/v2...v3)

---
updated-dependencies:
- dependency-name: docker/setup-qemu-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-09-14 13:23:30 +00:00
Dmitry Seleznyov
0cfd792018 Merge pull request #13 from selim13/dependabot/github_actions/docker/metadata-action-5
Bump docker/metadata-action from 4 to 5
2023-09-14 16:23:29 +03:00
Dmitry Seleznyov
e3248b6a01 Merge pull request #12 from selim13/dependabot/github_actions/docker/login-action-3
Bump docker/login-action from 2 to 3
2023-09-14 16:23:19 +03:00
Dmitry Seleznyov
18f5f948d2 Merge pull request #10 from selim13/dependabot/github_actions/docker/build-push-action-5
Bump docker/build-push-action from 4 to 5
2023-09-14 16:22:56 +03:00
Dmitry Seleznyov
50f292f808 Merge pull request #9 from selim13/dependabot/github_actions/docker/setup-buildx-action-3
Bump docker/setup-buildx-action from 2 to 3
2023-09-14 16:22:45 +03:00
dependabot[bot]
5944787d6d Bump docker/metadata-action from 4 to 5
Bumps [docker/metadata-action](https://github.com/docker/metadata-action) from 4 to 5.
- [Release notes](https://github.com/docker/metadata-action/releases)
- [Upgrade guide](https://github.com/docker/metadata-action/blob/master/UPGRADE.md)
- [Commits](https://github.com/docker/metadata-action/compare/v4...v5)

---
updated-dependencies:
- dependency-name: docker/metadata-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-09-12 21:16:00 +00:00
dependabot[bot]
456101b7b8 Bump docker/login-action from 2 to 3
Bumps [docker/login-action](https://github.com/docker/login-action) from 2 to 3.
- [Release notes](https://github.com/docker/login-action/releases)
- [Commits](https://github.com/docker/login-action/compare/v2...v3)

---
updated-dependencies:
- dependency-name: docker/login-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-09-12 21:15:53 +00:00
dependabot[bot]
ba7b6f4e8b Bump docker/build-push-action from 4 to 5
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 4 to 5.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](https://github.com/docker/build-push-action/compare/v4...v5)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-09-12 21:15:41 +00:00
dependabot[bot]
4d3dd2626d Bump docker/setup-buildx-action from 2 to 3
Bumps [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) from 2 to 3.
- [Release notes](https://github.com/docker/setup-buildx-action/releases)
- [Commits](https://github.com/docker/setup-buildx-action/compare/v2...v3)

---
updated-dependencies:
- dependency-name: docker/setup-buildx-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-09-12 21:15:36 +00:00
3 changed files with 10 additions and 9 deletions

View File

@@ -16,17 +16,17 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v2
- uses: docker/setup-buildx-action@v2
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to Container registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
@@ -34,7 +34,7 @@ jobs:
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
tags: |
type=ref,event=branch
@@ -46,7 +46,7 @@ jobs:
- name: Build and push
id: docker_build
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64

View File

@@ -27,8 +27,8 @@ RUN apk add --no-cache curl \
su-exec
### phpBB
ENV PHPBB_VERSION 3.3.9
ENV PHPBB_SHA256 8eacc10caff2327d51019ed2677b55ff1afdc68a3a7aaeee9ac29747775fe04f
ENV PHPBB_VERSION 3.3.16
ENV PHPBB_SHA256 d1964a2b0cae7d5ba761e5a77467075b463348fb6e8189ed539f09e7d98ce505
WORKDIR /tmp

View File

@@ -6,7 +6,8 @@ volumes:
services:
phpbb:
image: selim13/phpbb:3.3
build: .
image: git.avii.nl/avii/phpbb:3.3
ports:
- '127.0.0.1:8000:80'
volumes: