diff options
| author | wires <wires@noreply.wires.systems> | 2025-03-19 17:09:41 -0400 |
|---|---|---|
| committer | wires <wires@noreply.wires.systems> | 2025-03-19 17:09:41 -0400 |
| commit | 8466e9b4d2fbca85d53d8dadc87914b4766c43de (patch) | |
| tree | 99a0d7a23e805f4ad3e30814ee9a09ebb00ae08b /compose.yaml | |
| download | zosimos-8466e9b4d2fbca85d53d8dadc87914b4766c43de.tar.gz | |
initial commit
Diffstat (limited to 'compose.yaml')
| -rw-r--r-- | compose.yaml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..a12f71d --- /dev/null +++ b/compose.yaml @@ -0,0 +1,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" |