mirror of
https://github.com/xfarrow/blink
synced 2025-06-06 00:49:11 +02:00
153 lines
4.3 KiB
YAML
153 lines
4.3 KiB
YAML
version: '3'
|
|
|
|
services:
|
|
mssql:
|
|
image: mcr.microsoft.com/mssql/server:2019-latest
|
|
ports:
|
|
- '21433:1433'
|
|
environment:
|
|
- ACCEPT_EULA=Y
|
|
- SA_PASSWORD=S0meVeryHardPassword
|
|
healthcheck:
|
|
test: /opt/mssql-tools/bin/sqlcmd -S mssql -U sa -P 'S0meVeryHardPassword' -Q 'select 1'
|
|
waitmssql:
|
|
image: mcr.microsoft.com/mssql/server:2017-latest
|
|
links:
|
|
- mssql
|
|
depends_on:
|
|
- mssql
|
|
entrypoint:
|
|
- bash
|
|
- -c
|
|
# https://docs.microsoft.com/en-us/sql/relational-databases/logs/control-transaction-durability?view=sql-server-ver15#bkmk_DbControl
|
|
- 'until /opt/mssql-tools/bin/sqlcmd -S mssql -U sa -P S0meVeryHardPassword -d master -Q "CREATE DATABASE knex_test; ALTER DATABASE knex_test SET ALLOW_SNAPSHOT_ISOLATION ON; ALTER DATABASE knex_test SET DELAYED_DURABILITY = FORCED"; do sleep 5; done'
|
|
|
|
mysql:
|
|
image: mysql
|
|
# https://dev.mysql.com/doc/refman/8.0/en/mysql-acid.html
|
|
# https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_flush_method
|
|
# nosync only for unix, edit for local start on other systems
|
|
command: --default-authentication-plugin=mysql_native_password --sync_binlog=0 --innodb_doublewrite=OFF --innodb-flush-log-at-trx-commit=0 --innodb-flush-method=nosync
|
|
ports:
|
|
- '23306:3306'
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=testrootpassword
|
|
- MYSQL_DATABASE=knex_test
|
|
- MYSQL_USER=testuser
|
|
- MYSQL_PASSWORD=testpassword
|
|
healthcheck:
|
|
test:
|
|
[
|
|
'CMD',
|
|
'/usr/bin/mysql',
|
|
'-hlocalhost',
|
|
'-utestuser',
|
|
'-ptestpassword',
|
|
'-e',
|
|
'SELECT 1',
|
|
]
|
|
interval: 30s
|
|
timeout: 5s
|
|
retries: 3
|
|
restart: always
|
|
volumes:
|
|
- mysql_data:/var/lib/mysql
|
|
waitmysql:
|
|
image: mysql
|
|
links:
|
|
- mysql
|
|
depends_on:
|
|
- mysql
|
|
entrypoint:
|
|
- bash
|
|
- -c
|
|
- 'until /usr/bin/mysql -hmysql -utestuser -ptestpassword -e "SELECT 1"; do sleep 5; done'
|
|
|
|
postgres:
|
|
image: postgres:13-alpine
|
|
# see https://www.postgresql.org/docs/current/non-durability.html
|
|
command: '-c full_page_writes=off -c fsync=off -c synchronous_commit=off'
|
|
ports:
|
|
- '25432:5432'
|
|
environment:
|
|
- POSTGRES_USER=testuser
|
|
- POSTGRES_PASSWORD=knextest
|
|
- POSTGRES_DB=knex_test
|
|
waitpostgres:
|
|
image: postgres:13-alpine
|
|
links:
|
|
- postgres
|
|
depends_on:
|
|
- postgres
|
|
entrypoint:
|
|
- bash
|
|
- -c
|
|
- 'until /usr/local/bin/psql postgres://testuser:knextest@postgres/knex_test -c "SELECT 1"; do sleep 5; done'
|
|
|
|
cockroachdb:
|
|
image: cockroachdb/cockroach:latest-v21.2
|
|
container_name: crdb
|
|
hostname: crdb
|
|
command: start-single-node --cluster-name=example-single-node --insecure
|
|
ports:
|
|
- '26257:26257'
|
|
- '8080:8080'
|
|
|
|
waitcockroachdb:
|
|
container_name: crdb-init
|
|
hostname: crdb-init
|
|
image: timveil/cockroachdb-remote-client:latest
|
|
environment:
|
|
- COCKROACH_HOST=crdb:26257
|
|
- COCKROACH_INSECURE=true
|
|
- DATABASE_NAME=test
|
|
depends_on:
|
|
- cockroachdb
|
|
|
|
pgnative:
|
|
image: postgres:13-alpine
|
|
# see https://www.postgresql.org/docs/current/non-durability.html
|
|
command: '-c full_page_writes=off -c fsync=off -c synchronous_commit=off'
|
|
ports:
|
|
- '25433:5432'
|
|
environment:
|
|
- POSTGRES_USER=testuser
|
|
- POSTGRES_PASSWORD=knextest
|
|
- POSTGRES_DB=knex_test
|
|
waitpgnative:
|
|
image: postgres:13-alpine
|
|
links:
|
|
- pgnative
|
|
depends_on:
|
|
- pgnative
|
|
entrypoint:
|
|
- bash
|
|
- -c
|
|
- 'until /usr/local/bin/psql postgres://testuser:knextest@pgnative/knex_test -c "SELECT 1"; do sleep 5; done'
|
|
|
|
oracledb:
|
|
image: quillbuilduser/oracle-18-xe
|
|
container_name: oracledb_container
|
|
ports:
|
|
- '21521:1521'
|
|
environment:
|
|
- ORACLE_ALLOW_REMOTE=true
|
|
waitoracledb:
|
|
image: quillbuilduser/oracle-18-xe
|
|
links:
|
|
- oracledb
|
|
depends_on:
|
|
- oracledb
|
|
environment:
|
|
- ORACLE_HOME=/opt/oracle/product/18c/dbhomeXE
|
|
entrypoint:
|
|
- bash
|
|
- -c
|
|
- 'until /opt/oracle/product/18c/dbhomeXE/bin/sqlplus -s sys/Oracle18@oracledb/XE as sysdba <<< "SELECT 13376411 FROM DUAL; exit;" | grep "13376411"; do echo "Could not connect to oracle... sleep for a while"; sleep 5; done'
|
|
|
|
volumes:
|
|
mysql_data:
|
|
driver_opts:
|
|
type: tmpfs
|
|
device: tmpfs
|