Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save dsartori/3b40c1df631e13ee9f827d163dae4388 to your computer and use it in GitHub Desktop.

Select an option

Save dsartori/3b40c1df631e13ee9f827d163dae4388 to your computer and use it in GitHub Desktop.

Revisions

  1. @jjuanrivvera99 jjuanrivvera99 revised this gist Aug 9, 2019. 1 changed file with 4 additions and 1 deletion.
    5 changes: 4 additions & 1 deletion mssql-docker-compose.yml
    Original file line number Diff line number Diff line change
    @@ -12,4 +12,7 @@ services:
    ports:
    - 1433:1433
    volumes:
    - my-volume:/var/opt/mssql
    - my-volume:/var/opt/mssql

    volumes:
    my-volume:
  2. @jjuanrivvera99 jjuanrivvera99 revised this gist Jul 24, 2019. No changes.
  3. @jjuanrivvera99 jjuanrivvera99 created this gist Jul 24, 2019.
    15 changes: 15 additions & 0 deletions mssql-docker-compose.yml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,15 @@
    version: '3.3'

    services:
    mssql:
    container_name: sql-server
    image: mcr.microsoft.com/mssql/server:2017-latest
    #image: mcr.microsoft.com/mssql/server:2017-CU11-ubuntu
    restart: always
    environment:
    ACCEPT_EULA: "Y"
    SA_PASSWORD: "Contraseña12345678"
    ports:
    - 1433:1433
    volumes:
    - my-volume:/var/opt/mssql