Last active
September 25, 2024 14:39
-
-
Save technicaldogsbody/5a3c6bdee0a30a40f5a1124aa4809884 to your computer and use it in GitHub Desktop.
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
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 |
Where's the Dockerfile, my friend?
No docker file needed, it is using an image 😄
@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
Where's the Dockerfile, my friend?