Navy Linux 8.4 Stable Docker Image

Navy Foundation is proud to announce the stable Docker image of the Navy Linux Available now, Here is the Docker Hub container to download Navy Linux container.

Docker Pull Command

docker pull navylinux/navylinux

Source code

https://github.com/navy-linux/docker-images

Example Dockerfile for Nginx

FROM navylinux:8
RUN yum -y update
RUN yum -y install nginx
EXPOSE 80/tcp
CMD ["nginx", "-g daemon off;"]