2017-10-19 14 views
0

ドッキング・ステーションを初めて使用しています。ここに私がやろうとしていることがあります。ドッカーコンテナにはWebサービスがあり、既存のMSSQLサーバーにアクセスしたいのですが。ここドッキング・コンテナがMSSQLに接続

は、接続文字列

version: '3' 
    services: 
     pricing.api: 
    environment: 
     - ASPNETCORE_ENVIRONMENT=Development 
     - ConnectionString=data source=127.0.0.1,1433;Initial Catalog=db;Integrated Security=True; 
    ports: 
     - "11102:80" 

である私は、ここで間違っているものを

: 'A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: TCP Provider, error: 35 - An internal exception was caught)' 

このエラーが出ますか? btw、ローカルに127.0.0.1,1433に接続できます。

答えて

0

コンテナ内のアドレス127.0.0.1はコンテナ自体を指します。接続するホストの別のIPアドレスを使用してください。

関連する問題