Skip to content

Commit

Permalink
Use ArangoDB 3.10.1 in docker-compose (#1321)
Browse files Browse the repository at this point in the history
  • Loading branch information
lloesche authored Nov 29, 2022
1 parent 2c3e9d8 commit d8ea453
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,23 @@
version: "3"
version: "3.8"

services:
graphdb-upgrade:
image: arangodb:3.10.1
container_name: graphdb-upgrade
environment:
- ARANGO_ROOT_PASSWORD=
ports:
- "8529:8529"
volumes:
- resoto_graphdb_data:/var/lib/arangodb3
command:
- --database.auto-upgrade
graphdb:
image: arangodb:3.8.8
image: arangodb:3.10.1
depends_on:
graphdb-upgrade:
condition: service_completed_successfully
container_name: graphdb
platform: linux/amd64
environment:
- ARANGO_ROOT_PASSWORD=
ports:
Expand Down

0 comments on commit d8ea453

Please sign in to comment.