skip to Main Content

Ubuntu – SQL Server docker compose running errors

I'm currently trying to use docker-compose to set up two containers, one is using Dockerfile while another is from a public available image: version: '3.4' services: sampleweb: image: ${DOCKER_REGISTRY-}saucedsampleweb build: context: . dockerfile: SaucedSampleWeb/Dockerfile links: - "mssql:database" mssql: image: mcr.microsoft.com/mssql/server:2019-latest…

VIEW QUESTION
Back To Top
Search