mirror of
https://github.com/vimagick/dockerfiles.git
synced 2026-01-04 03:54:55 +01:00
add tftpd
This commit is contained in:
13
tftpd/arm/Dockerfile
Normal file
13
tftpd/arm/Dockerfile
Normal file
@@ -0,0 +1,13 @@
|
||||
#
|
||||
# Dockerfile for tftpd-arm
|
||||
#
|
||||
|
||||
FROM easypi/alpine-arm
|
||||
MAINTAINER EasyPi Software Foundation
|
||||
|
||||
RUN apk add --no-cache tftp-hpa
|
||||
VOLUME /tftpboot
|
||||
EXPOSE 69/udp
|
||||
|
||||
ENTRYPOINT ["in.tftpd"]
|
||||
CMD ["--verbose", "--foreground", "--secure", "--create", "--user", "root", "/tftpboot"]
|
||||
7
tftpd/arm/docker-compose.yml
Normal file
7
tftpd/arm/docker-compose.yml
Normal file
@@ -0,0 +1,7 @@
|
||||
tftpd:
|
||||
image: easypi/tftpd-arm
|
||||
ports:
|
||||
- "69:69/udp"
|
||||
volumes:
|
||||
- ./data:/tftpboot
|
||||
restart: unless-stopped
|
||||
Reference in New Issue
Block a user