Containers
Это содержимое пока не доступно на вашем языке.
Let’s review some options, related to running Muo from the container
Docker Registry
Section titled “Docker Registry”Currently, we do not upload the official Muo image into any Docker registry.
But you can create a local image with the system of your choice.
Local image
Section titled “Local image”If you have a Muo binary locally, you can easily create a container with it.
Let’s assume, you placed the muo binary in the working folder.
-
Create the following
Dockerfilenext to the executableFROM ubuntu:latest AS runtimeWORKDIR /appCOPY muo ./RUN chmod u+x ./muoEXPOSE 3000/tcpENTRYPOINT ["./muo"] -
Build the image
Terminal window docker image build \--tag docker.cesbo.com/muo:latest \.
-
Create the following
Containerfilenext to the executableFROM ubuntu:latest AS runtimeWORKDIR /appCOPY muo ./RUN chmod u+x ./muoEXPOSE 3000/tcpENTRYPOINT ["./muo"] -
Build the image
Terminal window podman image build \--tag docker.cesbo.com/muo:latest \.