Skip to content

Latest commit

 

History

History
executable file
·
62 lines (54 loc) · 3.01 KB

File metadata and controls

executable file
·
62 lines (54 loc) · 3.01 KB

Alpine Build Docker Pulls
Find on DockerHub || Find on Github

Prerequisites:


Part 06 -- Nginx: Simple Artifact Server

Step.01 Launch Nginx on Alpine Linux Container with Podman

sudo podman run \
    --rm                                                                                                  \
    --detach                                                                                              \
    --name     ocp-nginx                                                                                  \
    --publish  ${ocp_ministack_SUBNET}.3:8080:8080                                                        \
    --volume   ~/.ccio/ocp-mini-stack/module/nginx/aux/html/:/var/www/html/:ro                            \
    --volume   ~/.ccio/ocp-mini-stack/module/nginx/aux/config/nginx.conf:/etc/nginx/nginx.conf            \
    --volume   ~/.ccio/ocp-mini-stack/module/nginx/aux/config/default.conf:/etc/nginx/conf.d/default.conf \
  docker.io/containercraft/ccio-nginx

Next Steps:


+ Repo Module Index
.
├── aux
│   ├── bin
│   │   └── scrape-artifact-mirrors
│   ├── config
│   │   ├── default.conf
│   │   └── nginx.conf
│   └── html
│       ├── boot
│       └── README.txt
└── README.md