-
-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
38 lines (35 loc) · 1022 Bytes
/
docker-compose.yml
File metadata and controls
38 lines (35 loc) · 1022 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
37
38
services:
rainfrog-postgres:
container_name: rainfrog-postgres
image: postgres:16.3
environment:
POSTGRES_USER: "root"
POSTGRES_PASSWORD: "password"
POSTGRES_DB: "rainfrog"
ports:
- "${PG_PORT}:5432"
volumes:
- ./dev/pg_init.sql:/docker-entrypoint-initdb.d/00_init.sql
rainfrog-mysql:
container_name: rainfrog-mysql
image: mysql:8.4
environment:
MYSQL_ROOT_PASSWORD: "password"
MYSQL_DATABASE: "rainfrog"
ports:
- "${MYSQL_PORT}:3306"
volumes:
- ./dev/mysql_init.sql:/docker-entrypoint-initdb.d/schema.sql
rainfrog-oracle:
container_name: rainfrog-oracle
image: gvenzl/oracle-xe:21.3.0
platform: linux/amd64 # only has this platform available
environment:
ORACLE_PASSWORD: password
APP_USER: rainfrog
APP_USER_PASSWORD: password
ORACLE_DATABASE: rainfrog
ports:
- "${ORACLE_PORT}:1521"
volumes:
- ./dev/oracle_init.sql:/container-entrypoint-initdb.d/init.sql