18 lines
203 B
YAML
18 lines
203 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
base:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.base
|
|
image: ns3-base
|
|
|
|
sim:
|
|
build:
|
|
context: .
|
|
depends_on:
|
|
- base
|
|
image: ns3-sim
|
|
|
|
|