Junior — Middle
Have you participated in setting up and running Docker containers yourself?
sobes.tech AI
Answer from AI
Yes, I have configured and launched Docker containers myself. The process usually includes:
- Creating a Dockerfile with the image description.
- Building the image with the
docker buildcommand. - Running the container using
docker run, specifying the necessary parameters (ports, volumes, environment variables).
An example of a simple Dockerfile for a Node.js application:
FROM node:14
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
CMD ["node", "index.js"]
Running the container:
docker build -t my-node-app .
docker run -p 3000:3000 my-node-app
I also configured volume mounting for data persistence and port forwarding for external access to the application.