Skip to content

Instantly share code, notes, and snippets.

@technicaldogsbody
Last active July 26, 2023 12:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save technicaldogsbody/5a3c6bdee0a30a40f5a1124aa4809884 to your computer and use it in GitHub Desktop.
Save technicaldogsbody/5a3c6bdee0a30a40f5a1124aa4809884 to your computer and use it in GitHub Desktop.
version: '3.9'
services:
mssql:
image: mcr.microsoft.com/azure-sql-edge
environment:
ACCEPT_EULA: "Y"
SA_PASSWORD: "0pti_R0cks"
ports:
- '1433:1433'
volumes:
- ./data:/var/opt/mssql/data
@cmple
Copy link

cmple commented Mar 18, 2023

Where's the Dockerfile, my friend?

@technicaldogsbody
Copy link
Author

Where's the Dockerfile, my friend?

No docker file needed, it is using an image 😄

@cmple
Copy link

cmple commented Jul 26, 2023

@technicaldogsbody how would one deploy this to Kubernetes let's say? The legend has it, it's not that easy...

For example:

docker buildx build \
    --platform linux/amd64 \
    -t us-east1-docker.pkg.dev/my-cluster/my-project/compiled-docker-image:latest \
    -f Dockerfile \
    --push \
    .

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment