Skip to content

Commit 9265fbf

Browse files
committed
Bump to CouchDB 3.4.2 in examples and tests
1 parent 01880fd commit 9265fbf

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

examples/compose/docker-compose-cluster.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "2.3"
22

33
services:
44
couchdb1:
5-
image: couchdb:3.3.3
5+
image: couchdb:3.4.2
66
command: -name [email protected] -setcookie thecookie
77
env_file: .couchdb-env
88
restart: always
@@ -13,7 +13,7 @@ services:
1313
- "15984:5984"
1414

1515
couchdb2:
16-
image: couchdb:3.3.3
16+
image: couchdb:3.4.2
1717
command: -name [email protected] -setcookie thecookie
1818
env_file: .couchdb-env
1919
restart: always
@@ -24,7 +24,7 @@ services:
2424
- "25984:5984"
2525

2626
couchdb3:
27-
image: couchdb:3.3.3
27+
image: couchdb:3.4.2
2828
command: -name [email protected] -setcookie thecookie
2929
env_file: .couchdb-env
3030
restart: always
@@ -45,7 +45,7 @@ services:
4545
- "9984:9984"
4646

4747
cluster-setup:
48-
image: gesellix/couchdb-cluster-config:v17.3.3
48+
image: gesellix/couchdb-cluster-config:v17.5.1
4949
command: -nodes 172.16.238.11 -nodes 172.16.238.12 -nodes 172.16.238.13
5050
networks:
5151
couchdb-cluster:

examples/compose/docker-compose-integrationtest.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ services:
1111
- "4895:5984"
1212

1313
couchdb_node_1:
14-
image: couchdb:3.3.3
14+
image: couchdb:3.4.2
1515
command: -setcookie thecookie
1616
environment:
1717
- "COUCHDB_USER=${COUCHDB_USER:-root}"
@@ -26,7 +26,7 @@ services:
2626
- "15984:5984"
2727

2828
couchdb_node_2:
29-
image: couchdb:3.3.3
29+
image: couchdb:3.4.2
3030
command: -setcookie thecookie
3131
environment:
3232
- "COUCHDB_USER=${COUCHDB_USER:-root}"
@@ -41,7 +41,7 @@ services:
4141
- "25984:5984"
4242

4343
couchdb_node_3:
44-
image: couchdb:3.3.3
44+
image: couchdb:3.4.2
4545
command: -setcookie thecookie
4646
environment:
4747
- "COUCHDB_USER=${COUCHDB_USER:-root}"
@@ -80,7 +80,7 @@ services:
8080
- "9985:9984"
8181

8282
cluster-setup:
83-
image: gesellix/couchdb-cluster-config:v17.3.3
83+
image: gesellix/couchdb-cluster-config:v17.5.1
8484
command: setup --delay 10s --timeout 30s --username ${COUCHDB_USER:-root} --password ${COUCHDB_PASSWORD:-a-secret} -nodes 172.16.238.11 -nodes 172.16.238.12 -nodes 172.16.238.13
8585
networks:
8686
couchdb-cluster:

examples/compose/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "2"
22

33
services:
44
couchdb:
5-
image: couchdb:3.3.3
5+
image: couchdb:3.4.2
66
env_file: .couchdb-env
77
restart: always
88
volumes:

examples/grafana/docker-traefik-stack.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ services:
7373
condition: on-failure
7474

7575
couchdb1:
76-
image: couchdb:3.3.3
76+
image: couchdb:3.4.2
7777
hostname: couchdb1.local
7878
command: -name [email protected] -setcookie thecookie
7979
environment:
@@ -94,7 +94,7 @@ services:
9494
condition: on-failure
9595

9696
couchdb2:
97-
image: couchdb:3.3.3
97+
image: couchdb:3.4.2
9898
hostname: couchdb2.local
9999
command: -name [email protected] -setcookie thecookie
100100
environment:
@@ -115,7 +115,7 @@ services:
115115
condition: on-failure
116116

117117
couchdb3:
118-
image: couchdb:3.3.3
118+
image: couchdb:3.4.2
119119
hostname: couchdb3.local
120120
command: -name [email protected] -setcookie thecookie
121121
environment:
@@ -174,7 +174,7 @@ services:
174174
condition: on-failure
175175

176176
cluster-setup:
177-
image: gesellix/couchdb-cluster-config:v17.3.3
177+
image: gesellix/couchdb-cluster-config:v17.5.1
178178
command: setup --delay 10s --timeout 30s --username ${COUCHDB_USER:-root} --password ${COUCHDB_PASSWORD:-a-secret} -nodes couchdb1.local -nodes couchdb2.local -nodes couchdb3.local
179179
networks:
180180
couchdb-cluster:

partitioned/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ docker run --rm -d \
1818
-v "$(pwd)"/data:/opt/couchdb/data \
1919
-e COUCHDB_USER=$COUCHDB_USER \
2020
-e COUCHDB_PASSWORD=$COUCHDB_PASSWORD \
21-
couchdb:3.3.3
21+
couchdb:3.4.2
2222

2323
sleep 5
2424

0 commit comments

Comments
 (0)