Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

125
Views
Where does the output for "docker -build" go?

I'm trying to build a sample docker image. When I run the following command:

docker build -t sample .

Where does the docker image go?

Here is my Dockerfile:

FROM node:boron

# Create app directory
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app

# Install app dependencies
COPY package.json /usr/src/app/
RUN npm install

# Bundle app source
COPY . /usr/src/app

EXPOSE 8080
CMD [ "npm", "start" ]
over 4 years ago · Santiago Trujillo
2 answers
Answer question

0

Use:

docker images

to see it

Example:

REPOSITORY     TAG                 IMAGE ID            CREATED             SIZE
sample         latest              c660b762fcd1        5 days ago          1.46GB
over 4 years ago · Santiago Trujillo Report

0

They get stored as a series of layers in your Docker root directory. On Linux, it's /var/lib/docker.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!