This commit is contained in:
2026-02-07 16:14:03 +01:00
commit 4facc0d39c
2 changed files with 23 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM alpine:3.23.3 AS dependencies
RUN apk add --no-cache \
tftp-hpa
FROM dependencies AS tftp-server
WORKDIR /tftp
EXPOSE 69/udp
# Start TFTP server
CMD ["in.tftpd", "--foreground", "--verbose", "--secure", "--address", ":69", "/tftp"]

10
docker-compose.yaml Normal file
View File

@@ -0,0 +1,10 @@
version: "3.9"
services:
tftp:
image: hub.anxietyprime.de/tools/tftp-server:latest
container_name: tftp
network_mode: host
volumes:
- ./path/to/folder/:/tftp
restart: always