childflow 0.4.0

A per-command-tree network sandbox for Linux
1
2
3
4
5
6
7
8
9
10
11
12
13
14
services:
  childflow-dev:
    build:
      context: ../..
      dockerfile: docker/dev/Dockerfile
    working_dir: /workspaces/childflow
    environment:
      CARGO_TARGET_DIR: /tmp/childflow-target
    volumes:
      - ../..:/workspaces/childflow
    tty: true
    stdin_open: true
    privileged: true
    network_mode: host