-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompose.yml
More file actions
36 lines (34 loc) · 871 Bytes
/
compose.yml
File metadata and controls
36 lines (34 loc) · 871 Bytes
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
services:
postgres:
image: postgres:18.3-trixie
container_name: postgres_container
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- "5432:5432"
mariadb:
image: mariadb:12.2.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.5.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