Issues while createing windows container nexus

Debasree Sarkar 1 Reputation point
2021-11-11T12:25:52.6+00:00

For business reasons I'm forced to create a Windows Container for our internal nexus repo.
This is my docker file :

FROM mcr.microsoft.com/windows/nanoserver:1909
RUN mkdir "c:\\nexus"
WORKDIR c:/nexus
RUN mkdir "sonatype-work"
RUN mkdir "nexus-3.36.0-01"
COPY nexus-3.36.0-01 "nexus-3.36.0-01"
COPY sonatype-work "sonatype-work"
RUN cd "c:\\nexus\\nexus-3.36.0-01\\bin"
EXPOSE 8081
CMD ["nexus.exe"]

I am using windows nano server image and the build goes well but I am getting this error

docker: Error response from daemon: container f204eff7c7e188ee05bae2835dbeca8b9709b88979025669cf6ea64ed36d04cd encountered an error during hcsshim::System::CreateProcess: failure in a Windows system call: The system cannot find the file specified. (0x2)
[Event Detail: Provider: 00000000-0000-0000-0000-000000000000]
[Event Detail: Provider: 00000000-0000-0000-0000-000000000000]
[Event Detail: onecore\vm\compute\management\orchestration\vmhostedcontainer\processmanagement.cpp(173)\vmcomputeagent.exe!00007FF62928B1D7: (caller: 00007FF62923E70B) Exception(2) tid(390) 80070002 The system cannot find the file specified.
CallContext:[\Bridge_ProcessMessage\VmHostedContainer_ExecuteProcess]
Provider: 00000000-0000-0000-0000-000000000000].

This is how I run the image

docker run -d -p 8081:8081 myself/nexus

Any idea what am I doing wrong here?

Windows Server
Windows Server
A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.
12,178 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Georg Matviak 176 Reputation points
    2021-11-12T17:36:58.637+00:00

    Hi DebasreeSarkar-4883,

    I would suggest you to run the containers locally and see if they are helpful.

    You can use Windows Admin Center to run your containers locally. Specifically, you use the the Containers extension of your Windows Admin Center instance to run the containers. First, open the container host you want to manage, and in the Tools pane, select the Containers extension. Then, select the Images tab inside the Container extension under Container Host.

    https://learn.microsoft.com/en-us/virtualization/windowscontainers/quick-start/run-your-first-container

    ------

    --If the reply is helpful, please Upvote and Accept it as an answer--

    0 comments No comments