GeistHaus
log in · sign up

python Docker official image overview

registry.hub.docker.com

Python is an interpreted, interactive, object-oriented, open-source programming language.

2 pages link to this URL
Cloud Computing Basics 6

Docker here, Docker there, and no Docker build anywhere. That’s not fair. How about we create the first docker? Docker image is built from Dockerfile. The syntax of Dockerfile is almost the same as Bash. This is an example of Dockerfile: FROM debian:jessie MAINTAINER Goran Mekić <meka@lugons.org> RUN touch /some-file.txt To build it run docker build -t username/repo . in a directory containing Dockerfile. It’s advisable to have a HUB username, as registration is free and has autobuild capabilities. We’ll deal with simple builds for now, and leave autobuild for some future post.

0 inbound links article en posts CloudDockerService DiscoveryCloud Basics