Commit fd276a72 authored by nimrod's avatar nimrod
Browse files

Use absolute image names.

parent b12f7a4c
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
FROM docker:20.10 as docker
FROM registry.hub.docker.com/library/docker:20.10 as docker

# hadolint ignore=DL3006
FROM registry.shore.co.il/cron as supersonic
+3 −3
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ services:
          "--password=$$MYSQL_PASSWORD"
          --execute 'SHOW DATABASES;'
          || exit 1
    image: mariadb:10
    image: registry.hub.docker.com/library/mariadb:10
    restart: always
    volumes:
      - mysql:/var/lib/mysql
@@ -64,7 +64,7 @@ services:
          --user "$$NEXTCLOUD_ADMIN_USER:$$NEXTCLOUD_ADMIN_PASSWORD"
          http://localhost/ocs/v2.php/apps/serverinfo/api/v1/info
          || exit 1
    image: nextcloud:21.0.0-apache
    image: registry.hub.docker.com/library/nextcloud:21.0.0-apache
    restart: always
    volumes:
      - nextcloud:/var/www/html
@@ -83,7 +83,7 @@ services:
      test:
        - CMD-SHELL
        - "{ echo PING | redis-cli; } || exit 1"
    image: redis:6-alpine
    image: registry.hub.docker.com/library/redis:6-alpine
    restart: always

  z-push:
+1 −1
Original line number Diff line number Diff line
FROM debian:buster-slim
FROM registry.hub.docker.com/library/debian:buster-slim
# hadolint ignore=DL3008
RUN apt-get update && \
    DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \