Dockerfile चलाने के लिए पार्टी की योजना बनाई

कोड उदाहरण

3
0

कंटेनर पर डॉकर रन कमांड

sudo docker exec -it <container name> <command>
1
0

कैसे चलाने के लिए dockerfile

# Use the official image as a parent image.
FROM node:current-slim

# Set the working directory.
WORKDIR /usr/src/app

# Copy the file from your host to your current location.
COPY package.json .

# Run the command inside your image filesystem.
RUN npm install

# Inform Docker that the container is listening on the specified port at runtime.
EXPOSE 8080

# Run the specified command within the container.
CMD [ "npm", "start" ]

# Copy the rest of your app's source code from your host to your image filesystem.
COPY . .
-1
0

डॉकर कैसे मौजूदा कंटेनर चलाने के लिए

docker start <container-name/ID>
-2
0

डॉकरफाइल रन ऐप सीएमडी

RUN apt-get install python3
CMD echo "Hello world"
ENTRYPOINT echo "Hello world"

इसी तरह के पन्ने

उदाहरणों के साथ समान पृष्ठ

अन्य भाषाओं में

यह पृष्ठ अन्य भाषाओं में है

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................