Skip to content

Commit 1f4351e

Browse files
Simran-Bjwierzbo
andauthored
Docker: CE equals EE in ArangoDB v3.12.5+ (#457)
arangodb/arangodb images are no longer published, use arangodb/enterprise instead Co-authored-by: jwierzbo <[email protected]>
1 parent 08cee91 commit 1f4351e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ ENV DATA_DIR=/data
1515
ENV RUNNING_IN_DOCKER=true
1616

1717
# Docker image containing arangod.
18-
ENV DOCKER_IMAGE=arangodb/arangodb:latest
18+
ENV DOCKER_IMAGE=arangodb/enterprise:latest
1919

2020
ENTRYPOINT ["/app/arangodb"]

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ DOCKERCLI ?= $(shell which docker)
5050
DOCKER_PLATFORMS ?= linux/amd64,linux/arm64
5151
DOCKER_BUILD_CLI := $(DOCKERCLI) build --build-arg "IMAGE=$(ALPINE_IMAGE)" --platform $(DOCKER_PLATFORMS)
5252

53-
ARANGODB ?= arangodb/arangodb:latest
53+
ARANGODB ?= arangodb/enterprise:latest
5454

5555
TEST_TIMEOUT := 1h
5656

examples/mac_on_docker_cluster.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22
#
3-
# This exampe shows how to run an ArangoDB cluster all locally in docker on mac.
3+
# This example shows how to run an ArangoDB cluster all locally in docker on mac.
44
#
55
# By default this script uses the latest released ArangoDB docker image.
66
# To use another image, set ARANGOIMAGE to the desired image, before calling this script.
@@ -11,7 +11,7 @@
1111

1212
NSCONTAINER=arangodb-on-mac-ns
1313
STARTERCONTAINER=arangodb-on-mac
14-
ARANGOIMAGE=${ARANGOIMAGE:=arangodb/arangodb:latest}
14+
ARANGOIMAGE=${ARANGOIMAGE:=arangodb/enterprise:latest}
1515

1616
# Create network namespace container.
1717
# Make sure to expose all ports you want here.

0 commit comments

Comments
 (0)