Replies: 3 comments 4 replies
-
this is awesome @mikecasas ! I'd love to help expand this by defining the container using dockerfiles. I'm excited to see this getting closer to deployed to k8s. |
Beta Was this translation helpful? Give feedback.
2 replies
-
@mikecasas can you explain what you needed to change in Program.cs? It would obviously be better if we could come up with a solution where this can be configured outside the framework code. |
Beta Was this translation helpful? Give feedback.
1 reply
-
I updated the sql container on DockerHub to work with latest 2.0 release. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
There are two Oqtane images on Dockerhub, one is the web application and the other is the SQL Server database.
Prerequisites - assumes you have a docker environment installed. (I am using Docker Desktop on Windows)
Copy the
docker-compose.yaml
file to your machine (File is at the bottom or the gist located at https://gist.github.com/mikecasas/6937bccf48097fe37261fc81323acea0).From a command line, navigate to the folder where you saved the
docker-compose.yaml
file.Run the command
docker-compose up
. It will take a while for the images to download.Once the containers are running, navigate in your browser to
http://localhost:6001
. You should see the Oqtane Installation page.From the command line, run
docker ps
to see the running containers. Get the container id of the SQL Server container.Once you have the container id, from the command line, run docker
inspect
to get the IP address of the SQL container.Password1
Install Now
docker-compose.yaml
Beta Was this translation helpful? Give feedback.
All reactions