Skip to content

Simple Docker TFTP server - which allows file upload

Notifications You must be signed in to change notification settings

casperghst42/tftp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

tftp

Simple Docker TFTP server - which allows file upload

Based on https://github.com/pghalliday-docker/tftp

docker build --rm -t casperghst42/tftp .

To run:

docker run -v tftp-data:/var/tftpboot -p 69:69/udp -i -t casperghst42/tftp

Docker-compose

version: '3'

services:
    tftp:
        hostname: tftp
        container_name: tftp
        build: .
        volumes:
            - tftp-data:/var/tftpboot
            - /etc/localtime:/etc/localtime:ro
        environment:
            - TZ=Europe/Berlin
        ports:
            - "69:69/udp"

volumes:
  tftp-data:

To run:

docker-compose up

About

Simple Docker TFTP server - which allows file upload

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published