BAEL-5511 code for the Rebuild docker container with docker-compose article
This commit is contained in:
parent
e17700100f
commit
a979ac2f47
|
@ -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