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:
commit
83e883f64c
|
@ -0,0 +1,8 @@
|
|||
version: "3.9"
|
||||
services:
|
||||
ubuntu:
|
||||
image: "ubuntu:latest"
|
||||
tty: true
|
||||
alpine:
|
||||
image: "alpine:latest"
|
||||
tty: true
|
|
@ -0,0 +1,10 @@
|
|||
version: "3.9"
|
||||
services:
|
||||
ubuntu:
|
||||
image: "ubuntu:latest"
|
||||
tty: true
|
||||
depends_on:
|
||||
- "alpine"
|
||||
alpine:
|
||||
image: "alpine:latest"
|
||||
tty: true
|
Loading…
Reference in New Issue