diff --git a/ansible/playbooks/roles/repository/files/download-requirements/tests/data/config.py b/ansible/playbooks/roles/repository/files/download-requirements/tests/data/config.py index c5440dcbed..f98be38026 100644 --- a/ansible/playbooks/roles/repository/files/download-requirements/tests/data/config.py +++ b/ansible/playbooks/roles/repository/files/download-requirements/tests/data/config.py @@ -166,9 +166,6 @@ 'bitnami/pgbouncer:1.16.0': sha1: f2e37eecbf9aed44d5566f06dcc101c1ba9edff9 - 'epiphanyplatform/keycloak:14.0.0': - sha1: b59d75a967cedd3a4cf5867eced2fb5dff52f60e - 'rabbitmq:3.8.9': sha1: c64408bf5bb522f47d5323652dd5e60560dcb5bc diff --git a/docs/home/ARM.md b/docs/home/ARM.md index 0fd2b6b939..1bf3a20f6a 100644 --- a/docs/home/ARM.md +++ b/docs/home/ARM.md @@ -417,23 +417,6 @@ provider: aws name: default specification: applications: - - name: auth-service # requires PostgreSQL to be installed in cluster - enabled: yes - image_path: epiphanyplatform/keycloak:9.0.0 - use_local_image_registry: true - #image_pull_secret_name: regcred - service: - name: as-testauthdb - port: 30104 - replicas: 2 - namespace: namespace-for-auth - admin_user: auth-service-username - admin_password: PASSWORD_TO_CHANGE - database: - name: auth-database-name - #port: "5432" # leave it when default - user: auth-db-user - password: PASSWORD_TO_CHANGE - name: rabbitmq enabled: yes image_path: rabbitmq:3.8.9 diff --git a/docs/home/howto/PREREQUISITES.md b/docs/home/howto/PREREQUISITES.md index 36d03f3c92..6817f5c2a2 100644 --- a/docs/home/howto/PREREQUISITES.md +++ b/docs/home/howto/PREREQUISITES.md @@ -18,26 +18,26 @@ docker build --file Dockerfile --tag epicli:${TAG} . ### Pull Epicli image from the registry ```bash -docker pull epiphanyplatform/epicli:TAG +docker pull ghcr.io/epiphany-platform/epicli:TAG ``` Where `TAG` should be replaced with an existing tag. -*Check [here](https://hub.docker.com/r/epiphanyplatform/epicli/tags?page=1&ordering=last_updated) for the available tags.* +*Check [here](https://github.com/epiphany-platform/epiphany/pkgs/container/epicli) for the available tags.* ### Running the Epicli image To run the image: ```bash -docker run -it -v LOCAL_DIR:/shared --rm epiphanyplatform/epicli:TAG +docker run -it -v LOCAL_DIR:/shared --rm ghcr.io/epiphany-platform/epicli:TAG ``` Where: - `LOCAL_DIR` should be replaced with the local path to the directory for Epicli input (SSH keys, data yaml files) and output (logs, build states), - `TAG` should be replaced with an existing tag. -*Check [here](https://hub.docker.com/r/epiphanyplatform/epicli/tags?page=1&ordering=last_updated) for the available tags.* +*Check [here](https://github.com/epiphany-platform/epiphany/pkgs/container/epicli) for the available tags.* ## Epicli development