8 Replies
Create a Docker file for your Gradebook application, and a Docker Compose file for deploying your gradebook and a Docker image of SQL server
You will need a volume for SQL server data to be persistent
Hi. I'd you're using Windows you can download Docker Desktop. It will install everything and system variables. Then you can execute commands from Powershell to work with containers and images.
Thing go like this: Docker will use hyperv to run virtual machines. You download or create images from scratch and to run those images you create containers.
The containers can be started and stopped by these Powershell commands. From Docker Desktop you have a particular console for each container. Use that one.
Dos and Powershell oftenly crash with Docker and you can lost all your progress.
They are asking you one image for your Gradebook app, one composer file to create a container of the Gradebook app and finally to download a docker image file of SQL Server and create a container. This last part is usually done in just one line of code. You take one image available on the internet, name your container and set all the parameters needed. That's why it's incredible practical. With one line you can deploy a DB server completely functional. Good luck!
Could you walk me through this? This is all new
https://www.youtube.com/watch?v=fqMOX6JJhGo This is a full video showing the architecture
freeCodeCamp.org
YouTube
Docker Tutorial for Beginners - A Full DevOps Course on How to Run ...
Get started using Docker with this end-to-end beginners course with hands-on labs.
Docker is an open platform for developers and sysadmins to build, ship, and run distributed applications, whether on laptops, data center VMs, or the cloud.
In this course you will learn Docker through a series of lectures that use animation, illustration and so...
https://www.sqlshack.com/how-to-set-up-and-run-sql-server-docker-image/ here you have something similar to what I'm taking about, but is not exactly as what you need to do
Aveek Das
SQL Shack - articles about database auditing, server performance, data recovery, and more
How to set up and run SQL Server Docker image
This article will show how to get started with the SQL Server Docker image.
The subject is quite long to explain. Most videos I found on youtube are outdated and long. You'll need to put at least 4 hours into this to understand everything you need and about 2 or 3 more to complete your assignment. If you have specific doubts I can help, but at least you need to start by watching a couple of videos. Please pay attention to the link on SQLsHack. They are showing how to use the command line to install an SQLServer instance in Docker for Mac. It's the same for Windows, just a different Docker Agent.
Was this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.