wires

summary refs log tree commit diff
path: root/compose.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'compose.yaml')
-rw-r--r--compose.yaml17
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"