typeorm/docker-compose.yml
Umed Khudoiberdiev ec9034125d
feat: SAP Hana support (#5246)
* basic impl

* finished basic table metadata queries;

* implemented data types;

* working on data types;

* added test for column length;

* working on indices

* working on query runner

* working on schema builder

* removed SAP HANA client from dependencies

* fixed SAP uuid

* working on falling tests;

* working on falling tests;

* added docker configuration for sap hana

* simplifying sample entity

* implemented pool;

* trying to add SAP Hana to Circle CI

* trying to add SAP Hana to Circle CI

* trying to add SAP Hana to Circle CI

* testing CircleCI config

* testing CircleCI config

* added sap tests for ci

* changed sap port

* ci experiments

* ci experiments

* removing ci, adding docs

* removing ci

* minor fixes;

* fixed falling test;

Co-authored-by: AlexMesser <dmzt08@gmail.com>
2019-12-23 19:35:54 +05:00

111 lines
2.6 KiB
YAML

version: '3'
services:
# mysql-5.5
#mysql5.5:
# image: "mysql:5.5"
# container_name: "typeorm-mysql-5.5"
# ports:
# - "3306:3306"
# environment:
# MYSQL_ROOT_PASSWORD: "admin"
# MYSQL_USER: "test"
# MYSQL_PASSWORD: "test"
# MYSQL_DATABASE: "test"
# mysql
mysql:
image: "mysql:5.7.24"
container_name: "typeorm-mysql"
ports:
- "3306:3306"
environment:
MYSQL_ROOT_PASSWORD: "admin"
MYSQL_USER: "test"
MYSQL_PASSWORD: "test"
MYSQL_DATABASE: "test"
# mariadb
mariadb:
image: "mariadb:10.4.8"
container_name: "typeorm-mariadb"
ports:
- "3307:3306"
environment:
MYSQL_ROOT_PASSWORD: "admin"
MYSQL_USER: "test"
MYSQL_PASSWORD: "test"
MYSQL_DATABASE: "test"
# postgres
postgres:
# mdillon/postgis is postgres + PostGIS (only). if you need additional
# extensions, it's probably time to create a purpose-built image with all
# necessary extensions. sorry, and thanks for adding support for them!
image: "mdillon/postgis:9.6"
container_name: "typeorm-postgres"
ports:
- "5432:5432"
environment:
POSTGRES_USER: "test"
POSTGRES_PASSWORD: "test"
POSTGRES_DB: "test"
# mssql
mssql:
image: "mcr.microsoft.com/mssql/server:2017-GA-ubuntu"
container_name: "typeorm-mssql"
ports:
- "1433:1433"
environment:
SA_PASSWORD: "Admin12345"
ACCEPT_EULA: "Y"
# cockroachdb
cockroachdb:
image: "cockroachdb/cockroach-unstable:v19.1.0-rc.2"
container_name: "typeorm-cockroachdb"
command: start --insecure
ports:
- "26257:26257"
# sap hana (works only on linux)
# hanaexpress:
# image: "store/saplabs/hanaexpress:2.00.040.00.20190729.1"
# container_name: "typeorm-hanaexpress"
# hostname: hxe
# command: ['--passwords-url', 'file:////hana/hxe-config.json', '--agree-to-sap-license']
# ulimits:
# nofile: 1048576
# sysctls:
# - kernel.shmmax=1073741824
# - net.ipv4.ip_local_port_range=40000 60999
# - kernel.shmmni=524288
# - kernel.shmall=8388608
# volumes:
# - volume-hana-xe:/hana/mounts
# - ./docker/hana/hxe-config.json:/hana/hxe-config.json
# ports:
# - 39013:39013
# - 39017:39017
# - 39041-39045:39041-39045
# - 1128-1129:1128-1129
# - 59013-59014:59013-59014
# mongodb
mongodb:
image: "mongo:3.4.18"
container_name: "typeorm-mongodb"
ports:
- "27017:27017"
# redis
# redis:
# image: "redis:3.0.3"
# container_name: "typeorm-redis"
# ports:
# - "6379:6379"
#volumes:
# volume-hana-xe: