Open mathieu-benoit opened 4 weeks ago
Let's add a default mssql provisioner, with outputs:
mssql
outputs
connection
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.
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.
score-k8s
score-compose
Let's add a default
mssql
provisioner, withoutputs
:connection
For references:
A basic compose file to take inspiration from, could be something around this:
Need to be tested and adapted, source file: https://github.com/score-spec/score-compose/blob/main/internal/command/default.provisioners.yaml.