From 7e3371f758e4a919ee7b89006f6d62cc079fd919 Mon Sep 17 00:00:00 2001 From: evazion Date: Thu, 16 Sep 2021 00:35:30 -0500 Subject: [PATCH] docker-compose: use images from Github instead of DockerHub. Use the Danbooru Docker images from the Github Container Registry instead of the DockerHub registry for the Compose file. Github is now considered the canonical source for Danbooru's Docker images. DockerHub is considered a mirror. * https://github.com/danbooru/danbooru/pkgs/container/danbooru * https://hub.docker.com/r/evazion/danbooru --- docker-compose.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 8324785f6..23625ae78 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -22,7 +22,7 @@ version: "3.4" services: danbooru: user: root - image: evazion/danbooru + image: ghcr.io/danbooru/danbooru ports: - "80:3000" environment: @@ -43,7 +43,7 @@ services: cron: user: root - image: evazion/danbooru + image: ghcr.io/danbooru/danbooru environment: - RAILS_ENV=production - DATABASE_URL=postgresql://danbooru@postgres/danbooru @@ -59,7 +59,7 @@ services: delayed_jobs: # We need root to write temp upload files in the images directory (/danbooru/public/data) user: root - image: evazion/danbooru + image: ghcr.io/danbooru/danbooru environment: - RAILS_ENV=production - DATABASE_URL=postgresql://danbooru@postgres/danbooru