next-jdbc/docker-compose.yml
Sean Corfield aadad07c59 switch to docker-compose for SQL Server
simplifies run-tests.sh and will make it easier
to spin up other testing databases in the future.
2022-08-05 15:15:15 -07:00

17 lines
401 B
YAML

version: '2'
services:
mysql:
image: percona:5.7
environment:
- MYSQL_ROOT_PASSWORD
ports:
- "3306:3306"
command:
[--character-set-server=utf8mb4, --collation-server=utf8mb4_unicode_ci]
sqlserver:
image: mcr.microsoft.com/mssql/server:2019-GA-ubuntu-16.04
environment:
ACCEPT_EULA: Y
SA_PASSWORD: Str0ngP4ssw0rd
ports:
- "1433:1433"