diff --git a/Dockerfile.local-service-lib b/Dockerfile.local-service-lib index 258042c..a4b5c93 100644 --- a/Dockerfile.local-service-lib +++ b/Dockerfile.local-service-lib @@ -1,4 +1,4 @@ -FROM harmony/netcdf-to-zarr:latest +FROM harmonyservices/netcdf-to-zarr:latest ARG LOCAL_SVCLIB diff --git a/README.md b/README.md index d742808..275fa99 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# harmony/netcdf-to-zarr +# Harmony NetCDF4 to Zarr converter A Harmony service to convert NetCDF4 files to Zarr files. Takes conventional Harmony messages and translates their input granules to Zarr using xarray. diff --git a/bin/build-image b/bin/build-image index b320733..cc1e7dc 100755 --- a/bin/build-image +++ b/bin/build-image @@ -2,7 +2,7 @@ set -e -image="harmony/netcdf-to-zarr" +image="harmonyservices/netcdf-to-zarr" tag=${1:-latest} # source the .env file if it exists diff --git a/bin/build-test-image b/bin/build-test-image index a9bbac2..6f94a7a 100755 --- a/bin/build-test-image +++ b/bin/build-test-image @@ -2,7 +2,7 @@ set -e -test_image="harmony/netcdf-to-zarr-tests" +test_image="harmonyservices/netcdf-to-zarr-tests" tag=${1:-latest} # We use the `host` network mode so we can have access to the diff --git a/bin/push-image b/bin/push-image index df7223e..5f00515 100755 --- a/bin/push-image +++ b/bin/push-image @@ -2,7 +2,7 @@ set -ex -image="harmony/netcdf-to-zarr" +image="harmonyservices/netcdf-to-zarr" tag=${1:-latest} region=${AWS_DEFAULT_REGION:-"us-west-2"} diff --git a/bin/run-in-docker b/bin/run-in-docker index 84c4334..98cf724 100755 --- a/bin/run-in-docker +++ b/bin/run-in-docker @@ -4,7 +4,7 @@ # It is meant to allow development and testing without repeatedly rebuilding the docker image. To # run a completely clean container using only what is in the image, as will be done in deployed # environments, run -# `docker run --rm -it --env-file=.env harmony/netcdf-to-zarr` +# `docker run --rm -it --env-file=.env harmonyservices/netcdf-to-zarr` # If the optional environment variable LOCAL_SVCLIB_DIR is set to the directory # of a local clone of the `harmony-service-lib-py` repo, it will be mounted @@ -38,5 +38,5 @@ docker run --rm -it \ -v $(pwd):/opt/harmony-netcdf-to-zarr \ ${svclib_volume} \ --entrypoint= \ - harmony/netcdf-to-zarr \ + harmonyservices/netcdf-to-zarr \ bash -c "${cmd}" diff --git a/bin/test-in-docker b/bin/test-in-docker index 45e7a91..50f5566 100755 --- a/bin/test-in-docker +++ b/bin/test-in-docker @@ -4,7 +4,7 @@ # suite. It is meant to allow development and testing without repeatedly rebuilding the docker image. To # run a completely clean container using only what is in the image, as will be done in CI environments, # run: -# `docker run --rm -it --env-file=.env harmony/netcdf-to-zarr-tests` +# `docker run --rm -it --env-file=.env harmonyservices/netcdf-to-zarr-tests` # If the optional environment variable LOCAL_SVCLIB_DIR is set to the directory # of a local clone of the `harmony-service-lib-py` repo, it will be mounted @@ -31,5 +31,5 @@ docker run --rm -it \ -v $(pwd):/opt/harmony-netcdf-to-zarr \ ${svclib_volume} \ --entrypoint= \ - harmony/netcdf-to-zarr-tests \ + harmonyservices/netcdf-to-zarr-tests \ bash -c "${cmd}" diff --git a/harmony_netcdf_to_zarr/adapter.py b/harmony_netcdf_to_zarr/adapter.py index 842031a..463e85e 100644 --- a/harmony_netcdf_to_zarr/adapter.py +++ b/harmony_netcdf_to_zarr/adapter.py @@ -41,7 +41,7 @@ class ZarrException(HarmonyException): """ def __init__(self, message=None): - super().__init__(message, 'harmony/netcdf-to-zarr') + super().__init__(message, 'harmonyservices/netcdf-to-zarr') class NetCDFToZarrAdapter(harmony.BaseHarmonyAdapter): diff --git a/tests/Dockerfile b/tests/Dockerfile index 566448a..5ec0cd5 100644 --- a/tests/Dockerfile +++ b/tests/Dockerfile @@ -1,5 +1,5 @@ ARG TAG=latest -FROM harmony/netcdf-to-zarr:$TAG +FROM harmonyservices/netcdf-to-zarr:$TAG COPY requirements/core.txt requirements/core.txt