Sha256: a410651c50064230b06b0f94ef674a0bb71233132b782b862c31012387ac47a9

Contents?: true

Size: 744 Bytes

Versions: 8

Compression:

Stored size: 744 Bytes

Contents

version: '3'

networks:
  main-network:

services:
  mssql:
    image: metaskills/mssql-server-linux-tinytds:2017-GA
    container_name: sqlserver
    environment:
      ACCEPT_EULA: Y
      SA_PASSWORD: super01S3cUr3
    ports:
      - "1433:1433"
    network_mode: "host"

  toxiproxy:
    image: shopify/toxiproxy
    container_name: toxiproxy
    command: '/toxiproxy -host=127.0.0.1'
    network_mode: "host"

  cimgruby:
    image: "cimg/ruby:${RUBY_VERSION:-2.7}"
    container_name: cimg_ruby
    environment:
      TESTOPTS: '-v'
      TINYTDS_UNIT_HOST: '127.0.0.1'
      SA_PASSWORD: super01S3cUr3
      TOXIPROXY_HOST: '127.0.0.1'
    command: tail -F anything
    volumes:
      - .:/home/circleci/project
    network_mode: "host"

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
tiny_tds-2.1.7-x64-mingw-ucrt docker-compose.yml
tiny_tds-2.1.7-x64-mingw32 docker-compose.yml
tiny_tds-2.1.7-x86-mingw32 docker-compose.yml
tiny_tds-2.1.7 docker-compose.yml
tiny_tds-2.1.6-x86-mingw32 docker-compose.yml
tiny_tds-2.1.6-x64-mingw-ucrt docker-compose.yml
tiny_tds-2.1.6-x64-mingw32 docker-compose.yml
tiny_tds-2.1.6 docker-compose.yml