diff --git a/docker-compose.yml b/docker-compose.yml index 50d4cac..6e7b8fe 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -37,4 +37,11 @@ services: - 8082:8082 - 9092:9092 - 28082:28082 - - 29092:29092 \ No newline at end of file + - 29092:29092 + redpanda-topic-create: + image: docker.redpanda.com/redpandadata/redpanda + container_name: redpanda-topic-create + entrypoint: [ "bash", "-c", "sleep 5 && rpk topic create test --brokers redpanda:29092" ] + depends_on: + - redpanda + restart: "no" diff --git a/test/couchbase/Dockerfile b/test/couchbase/Dockerfile index 17d8c01..7f8dfc3 100644 --- a/test/couchbase/Dockerfile +++ b/test/couchbase/Dockerfile @@ -1,5 +1,5 @@ #FROM couchbase/server:community-7.1.0-aarch64 -FROM couchbase:community-7.1.0 +FROM couchbase:community-7.2.2 ADD configure.sh /configure.sh RUN chmod +x /configure.sh