siemens / meta-iot2050

SIMATIC IOT2050 Isar/Debian Board Support Package
MIT License
131 stars 77 forks source link

linux-iot2050: enable CGROUP_BPF config to support docker #242

Closed BaochengSu closed 2 years ago

BaochengSu commented 2 years ago

Also enable the CONFIG_BRIDGE_NETFILTER.

Signed-off-by: Su Baocheng baocheng.su@siemens.com

BaochengSu commented 2 years ago

This should close #238

jan-kiszka commented 2 years ago

Looks good. Which docker packages did you test? Maybe mention this in the commit log.

BaochengSu commented 2 years ago

Looks good. Which docker packages did you test? Maybe mention this in the commit log.

The debian official docker.io and docker-compose packages are tested with below method:

For docker.io package:

docker run -it debian:bullseye-slim /bin/bash
/# apt update
/# apt install wget
/# wget xxxx.com

For docker-compose package:

docker-compose up with

version: '2'
services:
  hello_world:
    image: debian:bullseye-slim
    command: [/bin/echo, 'Hello world']