Merge pull request #12657 from thibaultfaure/article/BAEL-5511-rebuild-docker-container-with-docker-compose

BAEL-5511 code for the Rebuild docker container with docker-compose a…
This commit is contained in:
davidmartinezbarua 2022-08-28 22:34:53 -03:00 committed by GitHub
commit 83e883f64c
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