-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
66 lines (61 loc) · 1.92 KB
/
docker-compose.yml
File metadata and controls
66 lines (61 loc) · 1.92 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
65
66
services:
postgres:
image: postgres:14.5
command: postgres -c 'config_file=/etc/postgresql/postgresql.conf'
environment:
POSTGRES_PASSWORD: czykMn28LiNaKox6U3RDRw23MEZbSxWk
POSTGRES_USER: postgres
POSTGRES_DB: datagrowth
PGDATA: /var/lib/postgresql/data/pgdata
volumes:
- ./tests/services/postgres/conf/postgresql.conf:/etc/postgresql/postgresql.conf
- ./tests/services/postgres/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
- postgres-datagrowth:/var/lib/postgresql/data/pgdata
ports:
- "127.0.0.1:5432:5432"
mysql:
image: mysql:8.0
environment:
MYSQL_ROOT_PASSWORD: czykMn28LiNaKox6U3RDRw23MEZbSxWk
MYSQL_USER: django
MYSQL_PASSWORD: LqjXVGnBkqdu7CWuC23jgSjb7EtCWnNK
MYSQL_DATABASE: datagrowth
volumes:
- ./tests/services/mysql/conf.d:/etc/mysql/conf.d
- ./tests/services/mysql/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
- mysql-datagrowth:/var/lib/mysql
ports:
- "127.0.0.1:3306:3306"
mariadb:
image: mariadb:11.2
environment:
MARIADB_ROOT_PASSWORD: czykMn28LiNaKox6U3RDRw23MEZbSxWk
MARIADB_USER: django
MARIADB_PASSWORD: LqjXVGnBkqdu7CWuC23jgSjb7EtCWnNK
MARIADB_DATABASE: datagrowth
volumes:
- ./tests/services/mariadb/conf.d:/etc/mysql/conf.d
- ./tests/services/mariadb/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
- mariadb-datagrowth:/var/lib/mysql
ports:
- "127.0.0.1:3307:3306"
redis:
image: redis
command: redis-server
ports:
- "127.0.0.1:6379:6379"
tika:
build:
dockerfile: "Dockerfile-tika"
context: "./tests/services/tika"
volumes:
- ./tests/services/tika/tika-config.xml:/config/tika-config.xml
ports:
- "127.0.0.1:9998:9998"
volumes:
postgres-datagrowth:
driver: local
mysql-datagrowth:
driver: local
mariadb-datagrowth:
driver: local