Compare commits

...

1 Commits

Author SHA1 Message Date
Stefan Liebl
8eac6e5960 Just a running alpine Linux 2020-07-08 10:42:01 +02:00
2 changed files with 18 additions and 2 deletions

View File

@ -1,3 +1,13 @@
# docker-compose-workshop
# Just a running alpine linux
Docker-Compose workshop
## Start
docker-compose up -d
## Login
docker-compose exec app sh
## Stop
docker-compose down

6
docker-compose.yaml Normal file
View File

@ -0,0 +1,6 @@
version: '3'
services:
app:
image: alpine:latest
command: ["tail", "-f", "/dev/null"]