-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
docker-compose.yml
48 lines (44 loc) · 1011 Bytes
/
docker-compose.yml
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
version: '3.3'
services:
mongodb:
container_name: es-mongodb
image: mongo:8
ports:
- 27017:27017
volumes:
- type: tmpfs
target: /data/db
dynamodb:
container_name: es-dynamodb
image: amazon/dynamodb-local:latest
command: '-jar DynamoDBLocal.jar -sharedDb -dbPath ./data'
ports:
- 8000:8000
volumes:
- type: tmpfs
target: /home/dynamodblocal/data
postgres:
container_name: es-postgres
image: postgres:latest
ports:
- 5432:5432
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
volumes:
- type: tmpfs
target: /var/lib/postgresql/data
mariadb:
container_name: es-mariadb
image: mariadb:latest
ports:
- 3306:3306
environment:
MYSQL_ROOT_PASSWORD: mariadb
MYSQL_DATABASE: mariadb
MYSQL_USER: mariadb
MYSQL_PASSWORD: mariadb
volumes:
- type: tmpfs
target: /var/lib/mysql