BAEL-5511 code for the Rebuild docker container with docker-compose article

This commit is contained in:
thibault.faure
2022-08-27 20:40:10 +02:00
parent 5c4c13eb01
commit df4afaa5a1
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
version: "3.9"
services:
ubuntu:
image: "ubuntu:latest"
tty: true
alpine:
image: "alpine:latest"
tty: true

View File

@@ -0,0 +1,10 @@
version: "3.9"
services:
ubuntu:
image: "ubuntu:latest"
tty: true
depends_on:
- "alpine"
alpine:
image: "alpine:latest"
tty: true