This article is available now in kiosks for Programmez.
Monthly Archives: September 2018
Article for Programmez – July/August 2018 – Writing a Windows Service with C++
This article was available for the holidays edition of the magazine.
How to run SQL Server from Docker
Run a docker file that contains :
FROM microsoft/mssql-server-windows-developer
D:\Dev\DockerSQL>docker image build –tag myserversql d:\dev\dockersql
Sending build context to Docker daemon 3.072kB
Step 1/1 : FROM microsoft/mssql-server-windows-developer
latest: Pulling from microsoft/mssql-server-windows-developer 3889bb8d808b: Already exists
449343c9d7e2: Pull complete
08883151461d: Pull complete
bafeb45a72fc: Pull complete
f5c5aa235c5b: Pull complete
158fead2ffa0: Pull complete
746db9597cec: Pull complete
9e96edbd8781: Pull complete
c6dabab6234f: Pull complete
975d0dccd859: Pull complete
5b747cfb01b7: Pull complete
c77992bbfd0f: Pull complete
Digest: sha256:a3e77eb7ac136bf419269ab6a3f3387df5055d78b2b6ba2e930e1c6312b50e07
Status: Downloaded newer image for microsoft/mssql-server-windows-developer:latest
—> 19873f41b375
Successfully built 19873f41b375
Successfully tagged myserversql:latest
The, run the image:
docker run -d -p 1433:1433 -e sa_password=P@ssw0rd -e ACCEPT_EULA=Y -v C:/temp/:C:/temp/ -e attach_dbs=”[{‘dbName’:’NorthWind’,’dbFiles’:[‘C:\\temp\\NORTHWND.mdf’,’C:\\temp\\NORTHWND.ldf’]}]” myserversql
Obtain the ip address using:
docker ps -a
Take the first item and ask for IP :
D:\Dev\DockerSQL>docker inspect -f “{{ .NetworkSettings.Networks.nat.IPAddress }}” 7dfe63dd7615
Then open the SQL Server Management Studio and connect to this IP. You’re done !
Speaker at Meetup #2 for Programmez magazine
The September 11, we will be back in the 1993’s. I will speak about the Amiga OS features at the Programmez Meetup #2 located in Cellenza’s office in Paris:
https://www.programmez.com/content/meetup-2-une-histoire-dos-du-cp/m-aujourdhui
I will present the Amiga Workbench and the Intuition graphical interface, and how to create a Window using C SAS/C compiler 6.5.
I will also talk about AMOS basic and come with demos like Phenomena Enigma.
- image0011
- image0021
- image003
- image004
- image005
- image006
- image007
How to make a dockerfile for running Windows Services
To run a Windows Service into Docker for Windows, you have to take some actions…
First you need to create the service. Use the sc.exe command. Make your service starting as auto. It will be running automatically.
If you need to start as an administrator to have admin privileges, use the sc sdset command:
RUN sc sdset SCMANAGER D:(A;;CCLCRPRC;;;AU)(A;;CCLCRPWPRC;;;SY)(A;;KA;;;BA)S:(AU;FA;KA;;;WD)(AU;OIIOFA;GA;;;WD)
It’s weird and ugly but it works !
A tip & trick: ask docker to start an OS image that ships IIS to be able to see your custom log files. Else, you can’t see what’s happening…
If you run your docker image in Azure Container Instance, be carefull that your image need to be a Windows Server 1609…
So I start theses images in my various dockerfiles:
- FROM microsoft/dotnet-framework:4.6.2-runtime-windowsservercore-ltsc2016
- FROM microsoft/aspnet:4.6.2-windowsservercore-ltsc2016
My log file is written in c:\temp\logs so I make a custom WebApp on tis folder:
RUN powershell.exe New-WebVirtualDirectory -Site ‘Default Web Site’ -Name Logs -PhysicalPath ‘c:\temp\logs’
With this kind of dockerfile, I can see the log file of my Windows Service and communicate with him:
- image001
- image002