Docker: Provide multi-arch build for webdav dummy #1158 #1328

This commit is contained in:
Michael Mayer 2021-06-02 12:25:35 +02:00
parent f37b740ec8
commit cdfa420fb0
4 changed files with 7 additions and 6 deletions

View file

@ -188,9 +188,10 @@ docker-demo-local:
scripts/docker-build.sh demo $(DOCKER_TAG)
scripts/docker-push.sh demo $(DOCKER_TAG)
docker-webdav:
docker pull golang:1
scripts/docker-build.sh webdav $(DOCKER_TAG)
scripts/docker-push.sh webdav $(DOCKER_TAG)
docker pull --platform=amd64 golang:1
docker pull --platform=arm64 golang:1
docker pull --platform=arm golang:1
scripts/docker-buildx.sh webdav linux/amd64,linux/arm64,linux/arm $(DOCKER_TAG)
lint-js:
(cd frontend && npm run lint)
fmt-js:

View file

@ -151,4 +151,4 @@ services:
MYSQL_DATABASE: photoprism
webdav-dummy:
image: photoprism/webdav:20200825
image: photoprism/webdav:20210602

View file

@ -70,7 +70,7 @@ services:
POSTGRES_PASSWORD: photoprism
webdav-dummy:
image: photoprism/webdav:20200825
image: photoprism/webdav:20210602
volumes:
go-mod:

View file

@ -90,7 +90,7 @@ services:
MYSQL_DATABASE: photoprism
webdav-dummy:
image: photoprism/webdav:20200825
image: photoprism/webdav:20210602
volumes:
go-mod: