Skip to content

Commit

Permalink
Bump couchdb in examples and tests to 3.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
gesellix committed Dec 7, 2023
1 parent 7627828 commit 473cdc9
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 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.2
image: couchdb:3.3.3
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.2
image: couchdb:3.3.3
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.2
image: couchdb:3.3.3
command: -name [email protected] -setcookie thecookie
env_file: .couchdb-env
restart: always
Expand Down
6 changes: 3 additions & 3 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.2
image: couchdb:3.3.3
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.2
image: couchdb:3.3.3
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.2
image: couchdb:3.3.3
command: -setcookie thecookie
environment:
- "COUCHDB_USER=${COUCHDB_USER:-root}"
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.2
image: couchdb:3.3.3
env_file: .couchdb-env
restart: always
volumes:
Expand Down
6 changes: 3 additions & 3 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.2
image: couchdb:3.3.3
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.2
image: couchdb:3.3.3
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.2
image: couchdb:3.3.3
hostname: couchdb3.local
command: -name [email protected] -setcookie thecookie
environment:
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.1.0
couchdb:3.3.3

sleep 5

Expand Down

0 comments on commit 473cdc9

Please sign in to comment.