Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ESDB-147-8 - Move to Cloudsmith docker registry #165

Merged
merged 2 commits into from
Apr 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ make generate-protos-and-build
make test
```

By default the tests use `ghcr.io/eventstore/eventstore:ci`. To override this, set the `EVENTSTORE_DOCKER_TAG_ENV` environment variable to the tag you wish to use:
By default the tests use `docker.eventstore.com/eventstore-ce:ci`. To override this, set the `EVENTSTORE_DOCKER_TAG_ENV` environment variable to the tag you wish to use:

```shell
export EVENTSTORE_DOCKER_TAG_ENV="21.10.0-focal"
Expand Down
8 changes: 4 additions & 4 deletions cluster-docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
network_mode: none

cert-gen:
image: eventstore/es-gencert-cli:1.0.2
image: docker.eventstore.com/eventstore-utils/es-gencert-cli:latest
entrypoint: bash
user: "1000:1000"
command: >
Expand All @@ -26,7 +26,7 @@ services:
- volumes-provisioner

esdb-node1:
image: ghcr.io/eventstore/eventstore:${EVENTSTORE_DOCKER_TAG_ENV:-latest}
image: docker.eventstore.com/eventstore-ce/eventstoredb-ce:${EVENTSTORE_DOCKER_TAG_ENV:-latest}
env_file:
- shared.env
environment:
Expand All @@ -47,7 +47,7 @@ services:
- cert-gen

esdb-node2:
image: ghcr.io/eventstore/eventstore:${EVENTSTORE_DOCKER_TAG_ENV:-latest}
image: docker.eventstore.com/eventstore-ce/eventstoredb-ce:${EVENTSTORE_DOCKER_TAG_ENV:-latest}
env_file:
- shared.env
environment:
Expand All @@ -68,7 +68,7 @@ services:
- cert-gen

esdb-node3:
image: ghcr.io/eventstore/eventstore:${EVENTSTORE_DOCKER_TAG_ENV:-latest}
image: docker.eventstore.com/eventstore-ce/eventstoredb-ce:${EVENTSTORE_DOCKER_TAG_ENV:-latest}
env_file:
- shared.env
environment:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
network_mode: "none"

setup:
image: eventstore/es-gencert-cli:1.0.2
image: docker.eventstore.com/eventstore-utils/es-gencert-cli:latest
entrypoint: bash
user: "1000:1000"
command: >
Expand Down
2 changes: 1 addition & 1 deletion esdb/containers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ type EventStoreDockerConfig struct {
}

const (
DEFAULT_EVENTSTORE_DOCKER_REPOSITORY = "ghcr.io/eventstore/testdata"
DEFAULT_EVENTSTORE_DOCKER_REPOSITORY = "docker.eventstore.com/eventstore-utils/testdata"
DEFAULT_EVENTSTORE_DOCKER_TAG = "latest"
DEFAULT_EVENTSTORE_DOCKER_PORT = "2113"
)
Expand Down
Loading