-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose.yml
39 lines (35 loc) · 890 Bytes
/
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
version: "3.9"
services:
postgres:
image: postgres:17.0-bookworm
container_name: postgres_container
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- "5432:5432"
mariadb:
image: mariadb:11.5.2-noble
container_name: mariadb_container
environment:
MYSQL_ROOT_PASSWORD: maria
MYSQL_DATABASE: maria
MYSQL_USER: maria
MYSQL_PASSWORD: maria
ports:
- "3306:3306"
mysql:
image: mysql:9.1.0-oraclelinux9
container_name: mysql_container
command: --default-authentication-plugin=mysql_native_password
environment:
MYSQL_ROOT_PASSWORD: mysql
MYSQL_DATABASE: mysql
MYSQL_USER: mysql
MYSQL_PASSWORD: mysql
ports:
- "3307:3306"
hammerdb:
image: tpcorg/hammerdb:latest
container_name: hammerdb_container