Skip to content

Instantly share code, notes, and snippets.

@kiyoaki
Created September 10, 2018 09:12
Show Gist options
  • Select an option

  • Save kiyoaki/b37a76a3a69e86318248da2c2b7c7b21 to your computer and use it in GitHub Desktop.

Select an option

Save kiyoaki/b37a76a3a69e86318248da2c2b7c7b21 to your computer and use it in GitHub Desktop.

Revisions

  1. kiyoaki created this gist Sep 10, 2018.
    22 changes: 22 additions & 0 deletions docker-compose-mssql-linux.yml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,22 @@
    version: '3.4'

    services:
    hoge:
    image: hogeimage:0.0.1
    build:
    context: .
    dockerfile: hoge/Dockerfile
    ports:
    - 80:3000
    links:
    - mssql
    mssql:
    image: microsoft/mssql-server-linux
    ports:
    - 1433:1433
    environment:
    - ACCEPT_EULA=Y
    - MSSQL_PID=Express
    - MSSQL_SA_PASSWORD=FugaFuga
    volumes:
    - ./mssql:/var/opt/mssql