23 lines
341 B
YAML
23 lines
341 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
base:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.base
|
|
image: ns3-base
|
|
|
|
sim:
|
|
build:
|
|
context: .
|
|
volumes:
|
|
- ./scratch:/ns3/latest/scratch
|
|
- ./contrib:/ns3/latest/contrib
|
|
depends_on:
|
|
- base
|
|
environment:
|
|
- NS_LOG=ModulatedCCA=all
|
|
image: ns3-sim
|
|
|
|
|