forked from jet/equinox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
36 lines (33 loc) · 938 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
version: '3.7'
services:
equinox-postgres:
container_name: equinox-postgres
image: postgres
restart: unless-stopped
environment:
- PG_TRUST_LOCALNET=true
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=
- POSTGRES_DB=EQUINOX_TEST_DB
ports:
- "5432:5432"
equinox-mssql:
container_name: equinox-mssql
image: microsoft/mssql-server-linux:2017-latest
restart: unless-stopped
ports:
- "1433:1433"
environment:
- SA_PASSWORD=!Passw0rd
- ACCEPT_EULA=Y
equinox-mysql:
container_name: equinox-mysql
image: mysql:5.6
restart: unless-stopped
ports:
- "3306:3306"
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=1
- MYSQL_DATABASE=EQUINOX_TEST_DB
# it _almost_ (but doesnt) works with the default mysql using the following
# command: ['mysqld', '--character-set-server=utf8mb4', '--collation-server=utf8mb4_unicode_ci']