blob: a12f71db750fb3266ca3df6d223b36b595229e4d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
services:
tftp:
build: ./docker/tftp
ports:
- 69:69/udp
volumes:
- ./zig-out/boot:/data:ro
command: --verbose --foreground --secure /data
openocd:
build: ./docker/openocd
ports:
- 6666:6666
- 4444:4444
- 3333:3333
devices:
- "/dev/bus/usb:/dev/bus/usb"
command: -f interface/ft2232h.cfg -f board/rpi4b.cfg -c "bindto 0.0.0.0"
|