Skip to content

Commit a5b3cbb

Browse files
committed
add explicit reference to docker hub registry
1 parent 2304d78 commit a5b3cbb

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

deployment/database/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
FROM mariadb:10.1
1+
FROM docker.io/mariadb:10.1
22

33
COPY ./docker-entrypoint-initdb.d /docker-entrypoint-initdb.d

deployment/linuxfr-board/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3-slim-bookworm
1+
FROM docker.io/ruby:3-slim-bookworm
22

33
LABEL org.opencontainers.image.title="LinuxFr.org boards"
44
LABEL org.opencontainers.image.description="Push notifications for chat rooms of LinuxFr"

deployment/linuxfr-img/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:bullseye-slim as build
1+
FROM docker.io/debian:bullseye-slim as build
22

33
LABEL org.opencontainers.image.title="LinuxFr.org image caching service"
44
LABEL org.opencontainers.image.description="Store external images into a cache to not flood external website"
@@ -23,7 +23,7 @@ WORKDIR /linuxfr-img
2323
# Build linuxfr-img
2424
RUN go get -u github.com/linuxfrorg/img-LinuxFr.org
2525

26-
FROM debian:bullseye-slim as deploy
26+
FROM docker.io/debian:bullseye-slim as deploy
2727

2828
USER ${UID}
2929
WORKDIR /linuxfr-img

deployment/linuxfr.org/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:bookworm-slim
1+
FROM docker.io/debian:bookworm-slim
22

33
LABEL org.opencontainers.image.title="LinuxFr.org website"
44
LABEL org.opencontainers.image.description="Run LinuxFr.org Ruby on Rails website"

docker-compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ services:
4141
- cache-img:/linuxfr-img/cache
4242

4343
nginx:
44-
image: nginx:stable
44+
image: docker.io/nginx:stable
4545
env_file:
4646
- deployment/default.env
4747
volumes:
@@ -66,7 +66,7 @@ services:
6666
- data-database:/var/lib/mysql
6767

6868
redis:
69-
image: redis:5
69+
image: docker.io/redis:5
7070
volumes:
7171
- data-redis:/data
7272

0 commit comments

Comments
 (0)