containers: add registry to image references (#400)

This commit is contained in:
ConquerorDopy
2021-09-09 19:59:00 +02:00
committed by GitHub
parent dc17bfb2eb
commit e18ca8a30b
6 changed files with 11 additions and 11 deletions

View File

@@ -8,9 +8,9 @@
#
# Sources should be mounted to /workspaces/flood.
FROM jesec/rtorrent:master as rtorrent
FROM docker.io/jesec/rtorrent:master as rtorrent
FROM ubuntu:focal as flood
FROM docker.io/ubuntu:focal as flood
COPY ./.devcontainer/library-scripts /tmp/library-scripts/

View File

@@ -11,7 +11,7 @@
# publish the result image unless it was composed in a clean environment.
ARG BUILDPLATFORM=amd64
ARG NODE_IMAGE=node:alpine
ARG NODE_IMAGE=docker.io/node:alpine
FROM --platform=$BUILDPLATFORM ${NODE_IMAGE} as nodebuild
@@ -55,7 +55,7 @@ ENTRYPOINT ["npm", "--prefix=/usr/src/app/", "run", "start:development:server",
# docker exec -it ${container_id} npm --prefix=/usr/src/app/ run start:development:client
# rtorrent-flood image
FROM jesec/rtorrent:master as rtorrent
FROM docker.io/jesec/rtorrent:master as rtorrent
FROM flood as rtorrent-flood
# Copy rTorrent

View File

@@ -1,4 +1,4 @@
FROM archlinux
FROM docker.io/archlinux
ARG AUR_FOLDER
ARG AUR_REPO

View File

@@ -1,6 +1,6 @@
FROM jesec/busybox-applets as busybox
FROM docker.io/jesec/busybox-applets as busybox
FROM alpine as build
FROM docker.io/alpine as build
WORKDIR /root
@@ -43,7 +43,7 @@ ENV FLOOD_OPTION_HOST="0.0.0.0"
ENTRYPOINT ["/bin/tini", "--", "flood"]
# rtorrent-flood image
FROM jesec/rtorrent:master as rtorrent
FROM docker.io/jesec/rtorrent:master as rtorrent
FROM flood as rtorrent-flood
# Install rTorrent

View File

@@ -1,5 +1,5 @@
# Use node alpine docker image
FROM node:alpine
FROM docker.io/node:alpine
ARG PACKAGE=flood
ARG VERSION=latest

View File

@@ -1,9 +1,9 @@
ARG FLOOD_VERSION=latest
ARG RTORRENT_VERSION=latest
FROM jesec/rtorrent:$RTORRENT_VERSION as rtorrent
FROM docker.io/jesec/rtorrent:$RTORRENT_VERSION as rtorrent
FROM jesec/flood:$FLOOD_VERSION as flood
FROM docker.io/jesec/flood:$FLOOD_VERSION as flood
# Install rTorrent
COPY --from=rtorrent / /