Explicitely point to docker.io images

This is useful for tools like podman which do not take it for granted
that base images come from hub.docker.com.
This commit is contained in:
Régis Behmo 2020-01-10 17:15:48 +01:00
parent 461b0f5746
commit c03e86f43b
4 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@
# Because this image is still experimental, and we are not quite sure if it's going to
# be very useful, we do not provide any usage documentation.
FROM python:3.7
FROM docker.io/python:3.7
# As per https://github.com/docker/compose/issues/3918
COPY --from=library/docker:19.03 /usr/local/bin/docker /usr/bin/docker

View File

@ -1,4 +1,4 @@
FROM ubuntu:18.04
FROM docker.io/ubuntu:18.04
MAINTAINER Overhang.io <contact@overhang.io>
RUN apt update && \

View File

@ -1,4 +1,4 @@
FROM ubuntu:18.04
FROM docker.io/ubuntu:18.04
MAINTAINER Overhang.io <contact@overhang.io>
RUN mkdir /openedx

View File

@ -1,4 +1,4 @@
FROM ubuntu:16.04
FROM docker.io/ubuntu:16.04
MAINTAINER Overhang.io <contact@overhang.io>
############ common to lms & cms