score-spec / score-compose

Reference implementation for docker-compose target platform support
https://docs.score.dev/docs/score-implementation/score-compose/
Apache License 2.0
449 stars 42 forks source link

[feature request] Add a default `mssql` provisioner #195

Open mathieu-benoit opened 4 weeks ago

mathieu-benoit commented 4 weeks ago

Let's add a default mssql provisioner, with outputs:

For references:

A basic compose file to take inspiration from, could be something around this:

version: '3.8'
services:
  sql-server:
    image: mcr.microsoft.com/mssql/server
    container_name: sql-server-container
    environment:
      SA_PASSWORD: <your_password_here>
      ACCEPT_EULA: Y
    ports:
      - "1433:1433"

Need to be tested and adapted, source file: https://github.com/score-spec/score-compose/blob/main/internal/command/default.provisioners.yaml.

mathieu-benoit commented 1 week ago

JFYI: now in score-k8s: https://github.com/score-spec/score-k8s/pull/73, so this one would be a really good one for more consistency between score-compose and score-k8s.