Skip to content

Commit 2c908e4

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

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

Diff for: .github/workflows/sonarcloud.yml

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
echo $TRACER_PATH
2525
mkdir coverage
2626
27+
sudo apt-get -y install podman
28+
2729
echo "Starting Couchbase"
2830
docker compose -f docker-compose-integration.yaml up -d
2931

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)