Skip to content

Commit

Permalink
Update docker image names to use GHCR
Browse files Browse the repository at this point in the history
  • Loading branch information
stsnel committed Dec 13, 2024
1 parent 65a8a12 commit 4dc4de8
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions docker/docker-compose-separate-msl-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ volumes:
services:
ckan:
container_name: ckan
image: epos-msl-ckan:latest
image: ghcr.io/utrechtuniversity/epos-msl-cat-ckan:latest
links:
- db
- solr
Expand All @@ -45,7 +45,7 @@ services:

nginx:
container_name: nginx
image: epos-msl-nginx:latest
image: ghcr.io/utrechtuniversity/epos-msl-cat-nginx:latest
environment:
- EPOS_MSL_HOST=${EPOS_MSL_HOST}
ports:
Expand Down Expand Up @@ -73,7 +73,7 @@ services:

mslapi_webserver:
container_name: mslapi_web
image: epos-msl-api:latest
image: ghcr.io/utrechtuniversity/epos-msl-cat-mslapi:latest
environment:
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
- MSLAPI_ROLE=WEBSERVER
Expand All @@ -83,7 +83,7 @@ services:

mslapi_worker:
container_name: mslapi_worker
image: epos-msl-api:latest
image: ghcr.io/utrechtuniversity/epos-msl-cat-mslapi:latest
environment:
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
- MSLAPI_ROLE=QUEUE_WORKER
Expand All @@ -93,7 +93,7 @@ services:

solr:
container_name: solr
image: epos-msl-solr:latest
image: ghcr.io/utrechtuniversity/epos-msl-cat-solr:latest
volumes:
- solr_data:/opt/solr/server/solr/ckan/data

Expand Down
8 changes: 4 additions & 4 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ volumes:
services:
ckan:
container_name: ckan
image: epos-msl-ckan:latest
image: ghcr.io/utrechtuniversity/epos-msl-cat-ckan:latest
links:
- db
- solr
Expand All @@ -45,7 +45,7 @@ services:

nginx:
container_name: nginx
image: epos-msl-nginx:latest
image: ghcr.io/utrechtuniversity/epos-msl-cat-nginx:latest
environment:
- EPOS_MSL_HOST=${EPOS_MSL_HOST}
ports:
Expand Down Expand Up @@ -75,7 +75,7 @@ services:
# the MSL-API web application and the queue worker.
mslapi_webserver:
container_name: mslapi_web
image: epos-msl-api:latest
image: ghcr.io/utrechtuniversity/epos-msl-cat-mslapi:latest
environment:
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
- MSLAPI_ROLE=BOTH
Expand All @@ -85,7 +85,7 @@ services:

solr:
container_name: solr
image: epos-msl-solr:latest
image: ghcr.io/utrechtuniversity/epos-msl-cat-solr:latest
volumes:
- solr_data:/opt/solr/server/solr/ckan/data

Expand Down
2 changes: 1 addition & 1 deletion docker/images/ckan/build.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
docker build -t epos-msl-ckan:latest .
docker build -t ghcr.io/utrechtuniversity/epos-msl-cat-ckan:latest .
2 changes: 1 addition & 1 deletion docker/images/msl-api/build.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
docker build -t epos-msl-api:latest .
docker build -t ghcr.io/utrechtuniversity/epos-msl-cat-mslapi:latest .
2 changes: 1 addition & 1 deletion docker/images/nginx/build.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
docker build -t epos-msl-nginx:latest .
docker build -t ghcr.io/utrechtuniversity/epos-msl-cat-nginx:latest .
2 changes: 1 addition & 1 deletion docker/images/solr/build.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
docker build -t epos-msl-solr:latest .
docker build -t ghcr.io/utrechtuniversity/epos-msl-cat-solr:latest .

0 comments on commit 4dc4de8

Please sign in to comment.