Compare commits

...

4 Commits

Author SHA1 Message Date
947475621a Dockerfile 2020-07-02 19:41:20 +02:00
bc57016ab7 hello-world.sh 2020-07-02 19:29:03 +02:00
b7b72a1ae3 alpine linux 2020-07-02 19:04:11 +02:00
Stefan Liebl
9fb886c951 hello-world image 2020-07-02 19:01:31 +02:00
2 changed files with 8 additions and 0 deletions

3
Dockerfile Executable file
View File

@ -0,0 +1,3 @@
FROM alpine:latest
RUN echo "Hello World"

5
docker-compose.yaml Normal file
View File

@ -0,0 +1,5 @@
version: '3'
services:
hello_world:
build: .