Skip to content

Commit

Permalink
containers: add registry to image references (#400)
Browse files Browse the repository at this point in the history
  • Loading branch information
DopyConqueror authored Sep 9, 2021
1 parent dc17bfb commit e18ca8a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion distribution/archlinux/Dockerfile.aur
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM archlinux
FROM docker.io/archlinux

ARG AUR_FOLDER
ARG AUR_REPO
Expand Down
6 changes: 3 additions & 3 deletions distribution/containers/Dockerfile.distroless
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion distribution/containers/Dockerfile.release
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use node alpine docker image
FROM node:alpine
FROM docker.io/node:alpine

ARG PACKAGE=flood
ARG VERSION=latest
Expand Down
4 changes: 2 additions & 2 deletions distribution/containers/Dockerfile.rtorrent
Original file line number Diff line number Diff line change
@@ -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 / /
Expand Down

0 comments on commit e18ca8a

Please sign in to comment.