Use explicit image names so that Podman will work.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
5aea75875b
commit
08981df8ca
@ -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
|
||||
|
@ -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
|
||||
|
@ -1,3 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
docker build --no-cache -t witten/mediagoblin .
|
||||
docker build --no-cache -t projects.torsion.org/witten/mediagoblin-docker .
|
||||
|
@ -1,3 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
docker push witten/mediagoblin
|
||||
docker push projects.torsion.org/witten/mediagoblin-docker
|
||||
|
Loading…
Reference in New Issue
Block a user