forked from rails-sqlserver/tiny_tds
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
34 lines (30 loc) · 744 Bytes
/
docker-compose.yml
File metadata and controls
34 lines (30 loc) · 744 Bytes
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
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"