Just a running alpine Linux

This commit is contained in:
Stefan Liebl 2020-07-08 10:39:46 +02:00
parent 32d81b73bb
commit 8eac6e5960
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"]