Coder Social home page Coder Social logo

pawcho5's Introduction

LAB5 - Creating an image from scratch & multi-stage builds.

Commands used in this lab

Building an image

As I felt that it's not a great idea to keep an Alpine Linux tar file in repository (even if it's only ~3MB), I am leaving here a curl command to download Alpine which I used (this version was also provided in the course for this lab).

curl -L -o alpine-minirootfs-3.19.1-x86_64.tar https://dl-cdn.alpinelinux.org/alpine/v3.19/releases/x86_64/alpine-minirootfs-3.19.1-x86_64.tar.gz
docker build --build-arg VERSION=1.0.0 -t mycoolapp:1.0.0 .

If there won't be --build-arg option with value provided for VERSION argument, then it will be described as test_build.

Creating and starting a container

docker run -d --rm -p 80:80 --name app1 mycoolapp:1.0.0

Checking container health

docker ps --filter name=app1

Container's health shows up in the STATUS column.

But does it even work?

Screenshot

Additional info

Nginx was used here as a proxy, which redirects from default page to NodeJS app running under port 8080. To configure Nginx, I prepared a config file, which was based on output of this command:

docker run --rm --entrypoint=cat nginx /etc/nginx/conf.d/default.conf > ./default.conf

Even though I wasn't told to do so, I decided to copy ARG VERSION from first build stage to the final one (it looks better, than 'undefined').

pawcho5's People

Contributors

rreszka86 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.