diff --git a/docker-compose.yml b/docker-compose.yml index c76c314c6..840a591e9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ version: '3' services: postgres: - image: postgres:10 + image: docker.io/postgres:10 restart: unless-stopped volumes: - postgresdata:/var/lib/postgresql/data diff --git a/docker/Dockerfile b/docker/Dockerfile index 21d4269cc..a982d8543 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM crystallang/crystal:1.2.1-alpine AS builder +FROM docker.io/crystallang/crystal:1.2.1-alpine AS builder RUN apk add --no-cache sqlite-static yaml-static ARG release @@ -30,7 +30,7 @@ RUN if [ ${release} == 1 ] ; then \ fi -FROM alpine:latest +FROM docker.io/alpine:latest RUN apk add --no-cache librsvg ttf-opensans WORKDIR /invidious RUN addgroup -g 1000 -S invidious && \