-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #202 from tSQLt-org/VSCCI
Created devcontainer environment for development and fixed CI pipeline accordingly.
- Loading branch information
Showing
174 changed files
with
4,916 additions
and
7,770 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# Use the specified image as the base | ||
FROM mcr.microsoft.com/devcontainers/base:bullseye | ||
|
||
# Set environment variables, if any | ||
# ENV MY_ENV_VAR=my_value | ||
|
||
# Run package updates and install packages | ||
RUN apt-get update | ||
|
||
|
||
CMD code --install-extension ms-mssql.mssql | ||
|
||
USER vscode | ||
RUN curl https://run.spawn.cc/install | sh | ||
ENV PATH="/home/vscode/.spawnctl/bin:$PATH" | ||
|
||
USER root | ||
RUN apt-get update && apt-get install -y curl gnupg software-properties-common \ | ||
&& curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg \ | ||
&& chmod go+r /usr/share/keyrings/githubcli-archive-keyring.gpg \ | ||
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | tee /etc/apt/sources.list.d/github-cli.list \ | ||
&& apt-get update \ | ||
&& apt-get install -y gh | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y mono-complete | ||
|
||
ENV TSQLTCERTPATH /var/tSQLtCertTemp | ||
ENV TSQLTCERTPASSWORD P@ssw0rdP@ssw0rdP@ssw0rdP@ssw0rd | ||
RUN mkdir -p $TSQLTCERTPATH && \ | ||
chmod 777 $TSQLTCERTPATH | ||
|
||
# Add the Microsoft SQL Server repository | ||
RUN curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - \ | ||
&& curl https://packages.microsoft.com/config/ubuntu/20.04/prod.list > /etc/apt/sources.list.d/msprod.list | ||
|
||
RUN apt-get update | ||
ENV ACCEPT_EULA=Y | ||
RUN apt-get install -y mssql-tools unixodbc-dev | ||
ENV PATH="$PATH:/opt/mssql-tools/bin" | ||
|
||
RUN apt-get install -y unzip | ||
|
||
RUN curl -L https://aka.ms/sqlpackage-linux -o sqlpackage.zip \ | ||
&& unzip sqlpackage.zip -d /opt/sqlpackage \ | ||
&& chmod +x /opt/sqlpackage/sqlpackage \ | ||
&& rm sqlpackage.zip | ||
ENV PATH="$PATH:/opt/sqlpackage" | ||
|
||
RUN apt-get install -y wget apt-transport-https software-properties-common && \ | ||
wget -q "https://packages.microsoft.com/config/debian/$(. /etc/os-release && echo $VERSION_ID)/packages-microsoft-prod.deb" -O packages-microsoft-prod.deb && \ | ||
dpkg -i packages-microsoft-prod.deb && \ | ||
apt-get update && \ | ||
apt-get install -y powershell | ||
|
||
RUN pwsh -Command "Install-Module -Name SqlServer -Scope AllUsers -AllowClobber -Force" | ||
|
||
RUN pwsh -Command "Install-Module -Name Az -AllowClobber -Scope AllUsers -Force" | ||
RUN curl -sL https://aka.ms/InstallAzureCLIDeb | bash | ||
RUN curl -Lo bicep https://github.com/Azure/bicep/releases/latest/download/bicep-linux-x64 \ | ||
&& chmod +x ./bicep \ | ||
&& mv ./bicep /usr/local/bin/bicep | ||
|
||
# Set the default shell to PowerShell | ||
SHELL ["pwsh", "-Command"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the | ||
// README at: https://github.com/devcontainers/templates/tree/main/src/docker-in-docker | ||
{ | ||
"name": "Docker in Docker", | ||
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile | ||
//"image": "mcr.microsoft.com/devcontainers/base:bullseye", | ||
//"image": "mcr.microsoft.com/mssql/server:2022-latest", | ||
// "image": "mcr.microsoft.com/devcontainers/base:bullseye", | ||
"build": { | ||
// Path is relataive to the devcontainer.json file. | ||
"dockerfile": "Dockerfile" | ||
}, | ||
|
||
"features": { | ||
"ghcr.io/devcontainers/features/docker-in-docker:2": { | ||
"version": "latest", | ||
"enableNonRootDocker": "true", | ||
"moby": "true" | ||
}, | ||
// "ghcr.io/devcontainers/features/docker-outside-of-docker:1": {}, | ||
"ghcr.io/devcontainers/features/dotnet:1": {}, | ||
"ghcr.io/devcontainers/features/git:1": {}, | ||
// "ghcr.io/devcontainers/features/git-lfs:1": {}, | ||
// "ghcr.io/devcontainers/features/github-cli:1": {}, | ||
// "ghcr.io/devcontainers/features/go:1": {}, | ||
// "ghcr.io/devcontainers/features/powershell:1": {}, | ||
// "ghcr.io/devcontainers/features/python:1": {}, | ||
}, | ||
|
||
// Use this environment variable if you need to bind mount your local source code into a new container. | ||
"remoteEnv": { | ||
"LOCAL_WORKSPACE_FOLDER": "${localWorkspaceFolder}" | ||
}, | ||
|
||
// Use 'forwardPorts' to make a list of ports inside the container available locally. | ||
"forwardPorts": [], | ||
|
||
"customizations": { | ||
"vscode": { | ||
"settings": { | ||
"remote.autoForwardPorts": false | ||
}, | ||
"extensions": [ | ||
"ms-mssql.mssql", | ||
"redhat.vscode-yaml", | ||
"ms-vscode.powershell", | ||
"ms-azuretools.vscode-docker", | ||
"ms-mssql.sql-bindings-vscode", | ||
"ms-mssql.sql-database-projects-vscode", | ||
"ms-mssql.data-workspace-vscode", | ||
"github.vscode-github-actions", | ||
"ms-dotnettools.csdevkit", | ||
"ms-vscode.powershell", | ||
"ms-azuretools.vscode-bicep", | ||
] | ||
} | ||
}, | ||
|
||
// Use 'postCreateCommand' to run commands after the container is created. | ||
"postCreateCommand": ["/bin/sh", "-c", "whoami && pwd && chmod 777 ./.devcontainer/postCreateCommand.sh && ./.devcontainer/postCreateCommand.sh"], // | ||
|
||
// Use 'postStartCommand' to run commands after the container is created. | ||
"postStartCommand": ["/bin/sh", "-c", "whoami && pwd && chmod 777 ./.devcontainer/postStartCommand.sh && ./.devcontainer/postStartCommand.sh"], // | ||
|
||
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. | ||
// "remoteUser": "root" | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
cd "$(dirname "$0")" | ||
|
||
docker --version | ||
docker-compose -f sqlserver.yml up -d --force-recreate | ||
|
||
cd "$TSQLTCERTPATH" | ||
openssl req -x509 -newkey rsa:4096 -keyout tSQLtOfficialSigningKey.key -out tSQLtOfficialSigningKey.crt -days 365 -nodes -subj "/CN=yourdomain.com" | ||
openssl pkcs12 -export -out tSQLtOfficialSigningKey.pfx -inkey tSQLtOfficialSigningKey.key -in tSQLtOfficialSigningKey.crt -passout pass:"$TSQLTCERTPASSWORD" | ||
|
||
|
||
# pwsh -File ../tSQLt/PrepareServer.ps1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
cd "$(dirname "$0")" | ||
|
||
docker --version | ||
docker-compose -f sqlserver.yml up -d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
version: "3" | ||
services: | ||
sql_server: | ||
image: mcr.microsoft.com/mssql/server:2022-latest | ||
ports: | ||
- "1433:1433" | ||
environment: | ||
ACCEPT_EULA: 'Y' | ||
MSSQL_SA_PASSWORD: 'P@ssw0rd' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
-----BEGIN CERTIFICATE----- | ||
MIIFEzCCAvugAwIBAgIUA+19JzEdOm4/g23a0HCbrZuMPGMwDQYJKoZIhvcNAQEL | ||
BQAwGTEXMBUGA1UEAwwOeW91cmRvbWFpbi5jb20wHhcNMjMxMjAxMjAxMzA5WhcN | ||
MjQxMTMwMjAxMzA5WjAZMRcwFQYDVQQDDA55b3VyZG9tYWluLmNvbTCCAiIwDQYJ | ||
KoZIhvcNAQEBBQADggIPADCCAgoCggIBAOss5YSKp/ARdrfH7M20JT6y8KvX0iIj | ||
26oMM/JgeAvzNHt7CRnneVtJQpQTpfT0ugskolBV/XHGJ+3bOdnTsDiWea6dZ7zq | ||
SOIB0T3R+dA3EDFNUaVysVvrKzLU/GZL9RsZpMyvNUoChcL7UyTp+RWvS0reFCtp | ||
wpoLsrE0YCFckoDCFiKFivdLg/eESJyeR6W3fq+8XrlqZ2Vin+FbukH/eTC3aoUO | ||
s9z25K6v8nDn4EwqgDGdPyyU4EqnFy5oxEWwd1YoGQjXbGXTVZ6L8nUySadr8yXh | ||
DAc2Orsd0RN5r6vJJFDbxbab0mYayyq7ZfoGjKVbgUS2jZHMpDUhgnTjXD+oI7PV | ||
TrIqnY0pRTzh8xVOgFQP8H5J9aIS/tZDvImItmZ9MR1w/PoXt4VHd7nR8NMG/68I | ||
f9CXSj3Fza+bCw3az+PTd04BC14kxXMPfRahu2KB4TZJBOQeTRJaB0aq8Lo1hZE0 | ||
R6Amds3ouMo0jRww1LJ2r7CLRRp0CXRn+xD3e1GjcFQrW4vKTjR+7fSzJmpbl0Gf | ||
XvicJBxLUSx6fIr1eEzEIy5zeZi2gK+SZ8zwIoN1xLKnED2WY2fYupuuw1CsG+vP | ||
61087mJc1WCZGaTP2iQgfp7/P+WApzbM4Rvtbem1K9Jtq/F+EHHVJOZXqs50/+Lu | ||
cz8DgvBWV5sxAgMBAAGjUzBRMB0GA1UdDgQWBBTSgnxtHjMiZWC78QZOjshCcwjh | ||
XTAfBgNVHSMEGDAWgBTSgnxtHjMiZWC78QZOjshCcwjhXTAPBgNVHRMBAf8EBTAD | ||
AQH/MA0GCSqGSIb3DQEBCwUAA4ICAQCLpIQhtjlyu1J4tVASpA4BhCVbjibDYZQF | ||
xJ2Bbpkk/LcspV3Ekgij1aQBQNwoEPbU3uxog+xJr8hWuN5GmU2btCToeG2C7OKA | ||
Zn7USHuPoFUV8FA1MAS4iFrQOnZykzgX611lyeE7/ooABwidPZoVcvoWb5U6Niel | ||
PqDUoUrMg3gRIaG9zm4+009TDbcntfS/MtX6wrMKXlke01PQtLo3ohmti1KURXqI | ||
7Hu9NouFGxsUT+o8bkip/CsbScc7Ief9ADAJGEw+TSu2mD+1f7zgPeNzrR0kKbxp | ||
0Kr3OXUCophzWaO+oIEYzZMLXUpA9jVW5NUPcmW+shuT0IiK3WQJnpMBaGzs9XQT | ||
8LtrJrD9uVq9HpAGnjTfzoMWpBkqeIaG772NDKq9Z8LG4JVo2gV9rGC9uysDcms0 | ||
dGFt5AfFecM5nOqsPss4BjP85ZH7quzIhm57SVaMvuO3N2OvHyoJJDy4OQy7P/rq | ||
fBrmjP//Jb/i/hcRdZt17LhRdU2tuESHNWReFn0wRNLXOjkgg+Nntfl7qOUfNC23 | ||
///3xTr5UhfArr2HZn9uo7VrrF99mF4CJTmqwic1e5RC3knnNwwB7JR8/O0H5csL | ||
qKy57PSAU+w0pCrw/a4qeX+IswRLvQ6myTKIiDDGAruN/HOYEsAW3kuSLOxYFMKh | ||
9F7w2nGAcA== | ||
-----END CERTIFICATE----- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
-----BEGIN PRIVATE KEY----- | ||
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 | ||
11bvPI4fB5GVVMDLhPFgNyqPTwE4oJg= | ||
-----END PRIVATE KEY----- |
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.