Hans Karlsen (talk | contribs) No edit summary |
Hans Karlsen (talk | contribs) No edit summary |
||
Line 28: | Line 28: | ||
Solutions have been moved up in the source tree to enable docker support: | Solutions have been moved up in the source tree to enable docker support: | ||
C:\CapableObjectsWush\source\TurnkeyServerCore.sln and C:\CapableObjectsWush\source\MDrivenServerCore.sln | C:\CapableObjectsWush\source\TurnkeyServerCore.sln and C:\CapableObjectsWush\source\MDrivenServerCore.sln | ||
We aim to publish to the docker hub | |||
https://hub.docker.com/repository/docker/mdriven/mdrivenmain1 | https://hub.docker.com/repository/docker/mdriven/mdrivenmain1 | ||
Current status: npm does not build when executing dockerfile+right-click+Build-docker-image |
Revision as of 07:45, 19 April 2023
Docker desktop is an environment to run docker containers locally: https://www.docker.com/products/docker-desktop/
Once you have docker desktop set up mysql:
docker run -p 13306:3306 --name mysql2 -eMYSQL_ROOT_PASSWORD=123456 -d mysql:latest
To get MySQL running in docker check this guide: https://hevodata.com/learn/docker-mysql/#s1
Check what you run:
docker ps
To list existing docker images
docker images
To manage mysql you can use MySQL Workbench: https://dev.mysql.com/downloads/workbench/
In mysql create a Schema called Db1 and in MDrivenServer set ConnectionType to MySQL and connection string to :
Server=127.0.0.1;port=13306;Database=Db1;Uid=root;Pwd=123456;
To create a docker image from a published .net app :
docker build -t mdriverserverimage -f Dockerfile .
Where the Dockerfile is generated by visual studio by choosing the top level project and choose add-new/docker-support.
When starting your web apps from visual studio set these settings to control port and use of http:
If you run your MDrivenServer from a docker container - and connect to a MySQL in another docker container then remember that normally must be on the same network to be allowed to talk. Also remember to use port and ip from THAT docker network and not your external.
Since docker starts a network called bridge you can find out your mysql ip on that network like this:
docker inspect <container_id>
Server=172.17.0.3;port=3306;Database=Db1;Uid=root;Pwd=123456;
Build instructions - internal
Solutions have been moved up in the source tree to enable docker support:
C:\CapableObjectsWush\source\TurnkeyServerCore.sln and C:\CapableObjectsWush\source\MDrivenServerCore.sln
We aim to publish to the docker hub
https://hub.docker.com/repository/docker/mdriven/mdrivenmain1
Current status: npm does not build when executing dockerfile+right-click+Build-docker-image