forked from datacite/lupo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.local.dev.yml
More file actions
64 lines (60 loc) · 1.47 KB
/
docker-compose.local.dev.yml
File metadata and controls
64 lines (60 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
version: "3"
services:
memcached:
image: memcached:1.6.22
networks:
- public
ports:
- "11211:11211" # Expose the memcached port for external access
mysql:
command: --max_allowed_packet=50000000
environment:
MYSQL_DATABASE: datacite
MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
image: mysql:8.4.7
ports:
- "3309:3306"
networks:
- public
elasticsearch:
image: opensearchproject/opensearch:2
ports:
- "9201:9200"
- "9301:9300"
environment:
discovery.type: single-node
OPENSEARCH_JAVA_OPTS: -Xms512m -Xmx512m
OPENSEARCH_INITIAL_ADMIN_PASSWORD: AnUnsecurePassword123
DISABLE_SECURITY_PLUGIN: true
http.cors.enabled: true
bootstrap.memory_lock: true
http.cors.allow-origin: "*"
compatibility.override_main_response_version: true
logger.org.opensearch.discovery: "ERROR"
volumes:
- data:/usr/share/opensearch/data
networks:
- public
healthcheck:
test: curl -f http://admin:AnUnsecurePassword123@elasticsearch:9200
interval: 10s
timeout: 1s
minio:
command: server /data --console-address ":9001"
environment:
MINIO_ROOT_USER: minioadmin
MINIO_ROOT_PASSWORD: minioadmin
image: minio/minio:latest
ports:
- "9000:9000"
- "9001:9001"
networks:
- public
volumes:
- data:/user/share/minio/data
volumes:
data:
driver: local
networks:
public:
name: public