From 16de09610aa2b7cec02cde78786d0d3c5e145692 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Sun, 8 Dec 2019 14:59:39 -0600 Subject: [PATCH] switch web to GitHub image registry --- azure-pipelines.web.yaml | 8 ++++---- docker-compose.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/azure-pipelines.web.yaml b/azure-pipelines.web.yaml index eb1008861..0b46b9d66 100644 --- a/azure-pipelines.web.yaml +++ b/azure-pipelines.web.yaml @@ -31,8 +31,8 @@ steps: - task: Docker@2 displayName: "build" inputs: - containerRegistry: "collinbarrett2-dockerhub" - repository: "collinbarrett2/filterlists.web" + containerRegistry: "collinbarrett-github-packages" + repository: "collinbarrett/filterlists.web" command: "build" Dockerfile: "web/Dockerfile" buildContext: "./web" @@ -44,8 +44,8 @@ steps: - task: Docker@2 displayName: "push" inputs: - containerRegistry: "collinbarrett2-dockerhub" - repository: "collinbarrett2/filterlists.web" + containerRegistry: "collinbarrett-github-packages" + repository: "collinbarrett/filterlists.web" command: "push" tags: | latest diff --git a/docker-compose.yml b/docker-compose.yml index 35c6f1954..7bf3420c2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -13,7 +13,7 @@ services: - ./ops/nginx/svr-includes:/etc/nginx/svr-includes:ro web: - image: collinbarrett2/filterlists.web:latest + image: collinbarrett/filterlists.web:latest restart: always build: context: ./web