Use explicit image names so that Podman will work.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Dan Helfman 2023-04-10 22:13:20 -07:00
parent 5aea75875b
commit 08981df8ca
4 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
FROM bitnami/minideb:bullseye as build
FROM docker.io/bitnami/minideb:bullseye as build
ARG tini_version=0.19.0
@ -22,7 +22,7 @@ RUN install_packages \
&& wget --quiet https://github.com/krallin/tini/releases/download/v${tini_version}/tini \
--output-document=/sbin/tini
FROM bitnami/minideb:bullseye
FROM docker.io/bitnami/minideb:bullseye
COPY --from=build /usr/local/lib/python3.9 /usr/local/lib/python3.9
COPY --from=build /usr/local/bin /usr/local/bin

View File

@ -1,7 +1,7 @@
version: '3'
services:
mediagoblin-database:
image: postgres:14.3-alpine
image: docker.io/postgres:14.3-alpine
restart: always
environment:
POSTGRES_USER: mediagoblin
@ -11,7 +11,7 @@ services:
networks:
- default
mediagoblin:
image: witten/mediagoblin
image: projects.torsion.org/witten/mediagoblin-docker
restart: always
environment:
NOTIFICATION_EMAIL: dev@torsion.org

View File

@ -1,3 +1,3 @@
#!/bin/sh
docker build --no-cache -t witten/mediagoblin .
docker build --no-cache -t projects.torsion.org/witten/mediagoblin-docker .

View File

@ -1,3 +1,3 @@
#!/bin/sh
docker push witten/mediagoblin
docker push projects.torsion.org/witten/mediagoblin-docker