From 2b2884d996b8fc6101eff50db058639631eb5945 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Thu, 3 Dec 2020 01:00:10 +0200 Subject: [PATCH] Try to fix Docker. --- .devcontainer/Dockerfile | 6 +++++- Dockerfile | 6 +++++- docker-compose.yml | 5 ++++- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index f01748989..1c7f3f788 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,6 +1,10 @@ -FROM ubuntu:rolling +FROM quay.io/wekan/ubuntu:groovy-20201125.2 LABEL maintainer="sgr" +# 2020-12-03: +# - Above Ubuntu base image copied from Docker Hub ubuntu:groovy-20201125.2 +# to Quay to avoid Docker Hub rate limits. + ENV BUILD_DEPS="gnupg gosu bsdtar wget curl bzip2 g++ build-essential python git ca-certificates iproute2" ENV DEBIAN_FRONTEND=noninteractive diff --git a/Dockerfile b/Dockerfile index 3b84dac69..9cb157cbf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,10 @@ -FROM ubuntu:rolling +FROM quay.io/wekan/ubuntu:groovy-20201125.2 LABEL maintainer="wekan" +# 2020-12-03: +# - Above Ubuntu base image copied from Docker Hub ubuntu:groovy-20201125.2 +# to Quay to avoid Docker Hub rate limits. + # Set the environment variables (defaults where required) # DOES NOT WORK: paxctl fix for alpine linux: https://github.com/wekan/wekan/issues/1303 # ENV BUILD_DEPS="paxctl" diff --git a/docker-compose.yml b/docker-compose.yml index b34e40c7a..09960468d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -92,7 +92,10 @@ services: #------------------------------------------------------------------------------------- # ==== MONGODB AND METEOR VERSION ==== # a) mongodb latest, like 3.2 - 4.4 or newer https://hub.docker.com/_/mongo?tab=description - image: quay.io/bitnami/mongodb:latest + # 2020-12-03: + # - Mongo image copied from Docker Hub mongo:4.4.2-bionic to Quay + # to avoid Docker Hub rate limits. + image: quay.io/wekan/mongo:4.4.2-bionic #------------------------------------------------------------------------------------- container_name: wekan-db restart: always