Skip to content

Commit

Permalink
Bump to CouchDB 3.4.2 in examples and tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gesellix committed Nov 11, 2024
1 parent 01880fd commit 9265fbf
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions examples/compose/docker-compose-cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "2.3"

services:
couchdb1:
image: couchdb:3.3.3
image: couchdb:3.4.2
command: -name [email protected] -setcookie thecookie
env_file: .couchdb-env
restart: always
Expand All @@ -13,7 +13,7 @@ services:
- "15984:5984"

couchdb2:
image: couchdb:3.3.3
image: couchdb:3.4.2
command: -name [email protected] -setcookie thecookie
env_file: .couchdb-env
restart: always
Expand All @@ -24,7 +24,7 @@ services:
- "25984:5984"

couchdb3:
image: couchdb:3.3.3
image: couchdb:3.4.2
command: -name [email protected] -setcookie thecookie
env_file: .couchdb-env
restart: always
Expand All @@ -45,7 +45,7 @@ services:
- "9984:9984"

cluster-setup:
image: gesellix/couchdb-cluster-config:v17.3.3
image: gesellix/couchdb-cluster-config:v17.5.1
command: -nodes 172.16.238.11 -nodes 172.16.238.12 -nodes 172.16.238.13
networks:
couchdb-cluster:
Expand Down
8 changes: 4 additions & 4 deletions examples/compose/docker-compose-integrationtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
- "4895:5984"

couchdb_node_1:
image: couchdb:3.3.3
image: couchdb:3.4.2
command: -setcookie thecookie
environment:
- "COUCHDB_USER=${COUCHDB_USER:-root}"
Expand All @@ -26,7 +26,7 @@ services:
- "15984:5984"

couchdb_node_2:
image: couchdb:3.3.3
image: couchdb:3.4.2
command: -setcookie thecookie
environment:
- "COUCHDB_USER=${COUCHDB_USER:-root}"
Expand All @@ -41,7 +41,7 @@ services:
- "25984:5984"

couchdb_node_3:
image: couchdb:3.3.3
image: couchdb:3.4.2
command: -setcookie thecookie
environment:
- "COUCHDB_USER=${COUCHDB_USER:-root}"
Expand Down Expand Up @@ -80,7 +80,7 @@ services:
- "9985:9984"

cluster-setup:
image: gesellix/couchdb-cluster-config:v17.3.3
image: gesellix/couchdb-cluster-config:v17.5.1
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
networks:
couchdb-cluster:
Expand Down
2 changes: 1 addition & 1 deletion examples/compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "2"

services:
couchdb:
image: couchdb:3.3.3
image: couchdb:3.4.2
env_file: .couchdb-env
restart: always
volumes:
Expand Down
8 changes: 4 additions & 4 deletions examples/grafana/docker-traefik-stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ services:
condition: on-failure

couchdb1:
image: couchdb:3.3.3
image: couchdb:3.4.2
hostname: couchdb1.local
command: -name [email protected] -setcookie thecookie
environment:
Expand All @@ -94,7 +94,7 @@ services:
condition: on-failure

couchdb2:
image: couchdb:3.3.3
image: couchdb:3.4.2
hostname: couchdb2.local
command: -name [email protected] -setcookie thecookie
environment:
Expand All @@ -115,7 +115,7 @@ services:
condition: on-failure

couchdb3:
image: couchdb:3.3.3
image: couchdb:3.4.2
hostname: couchdb3.local
command: -name [email protected] -setcookie thecookie
environment:
Expand Down Expand Up @@ -174,7 +174,7 @@ services:
condition: on-failure

cluster-setup:
image: gesellix/couchdb-cluster-config:v17.3.3
image: gesellix/couchdb-cluster-config:v17.5.1
command: setup --delay 10s --timeout 30s --username ${COUCHDB_USER:-root} --password ${COUCHDB_PASSWORD:-a-secret} -nodes couchdb1.local -nodes couchdb2.local -nodes couchdb3.local
networks:
couchdb-cluster:
Expand Down
2 changes: 1 addition & 1 deletion partitioned/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ docker run --rm -d \
-v "$(pwd)"/data:/opt/couchdb/data \
-e COUCHDB_USER=$COUCHDB_USER \
-e COUCHDB_PASSWORD=$COUCHDB_PASSWORD \
couchdb:3.3.3
couchdb:3.4.2

sleep 5

Expand Down

0 comments on commit 9265fbf

Please sign in to comment.