forked from zio/zio-sql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
45 lines (41 loc) · 884 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
version: '3.1'
services:
postgres:
image: postgres:12
restart: always
environment:
POSTGRES_USER: zio_user
POSTGRES_PASSWORD: zio_pw
ports:
- "5432:5432"
mysql:
image: mysql:8
restart: always
environment:
MYSQL_USER: zio_user
MYSQL_PASSWORD: zio_pw
MYSQL_ROOT_PASSWORD: zio_pw
ports:
- "3306:3306"
mssql:
image: mcr.microsoft.com/mssql/server:2019-latest
restart: always
environment:
ACCEPT_EULA: Y
SA_PASSWORD: zio_pw123ABC!
MSSQL_PID: Developer
ports:
- "1433:1433"
# Username: sa
oracle:
image: oracleinanutshell/oracle-xe-11g
restart: always
environment:
ORACLE_ALLOW_REMOTE: 'true'
ORACLE_DISABLE_ASYNCH_IO: 'true'
ports:
- "1521:1521"
- "5500:5500"
# SID: XE
# Username: system
# Password: oracle