Skip to content

Commit 13fd756

Browse files
chore: updated the container registry in the docker-compose-integration.yaml
1 parent 21b58bc commit 13fd756

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Diff for: docker-compose-integration.yaml

+5-3
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,24 @@ version: '3'
33
services:
44

55
couchbase:
6-
image: couchbase/server:7.1.4
6+
image: public.ecr.aws/docker/library/couchbase:7.6.5
77
hostname: couchbase
88
ports:
99
- '8091-8096:8091-8096'
1010
- '11210:11210'
1111

1212
couchbase-setup:
13-
image: amd64/centos:7
14-
platform: linux/amd64
13+
image: public.ecr.aws/docker/library/alpine:3.21.2
1514
depends_on:
1615
- couchbase
1716
restart: "no"
1817
entrypoint:
1918
- "bash"
2019
- "-ecx"
2120
- |
21+
# Install curl
22+
apk fix && apk --no-cache --update add curl && rm -rf /var/cache/apk/* \
23+
# Run setup commands
2224
sleep 30 && \
2325
curl -v -X POST http://couchbase:8091/pools/default -d memoryQuota=2024 -d indexMemoryQuota=512 && \
2426
curl -v http://couchbase:8091/node/controller/setupServices -d services=kv%2Ceventing%2Cindex%2Cn1ql%2Ccbas%2Cfts && \

0 commit comments

Comments
 (0)