Initial commit
This commit is contained in:
38
README.md
Normal file
38
README.md
Normal file
@@ -0,0 +1,38 @@
|
||||
# Tftp server
|
||||
Tftp server based on Alpine Linux.
|
||||
|
||||
## Quick reference
|
||||
* Where to file issues:
|
||||
[Gitea](https://git.gmmg.it/kom23/tftp/issues)
|
||||
|
||||
* Supported architectures: amd64 , armv7 , arm64v8
|
||||
|
||||
## To run:
|
||||
### ...by docker run:
|
||||
```
|
||||
docker run -di -p 69:69/udp -v /var/tftpboot:/var/tftpboot rardcode/tftp
|
||||
```
|
||||
|
||||
### ...by docker-compose file:
|
||||
```
|
||||
services:
|
||||
app:
|
||||
image: rardcode/tftp
|
||||
container_name: tftp
|
||||
volumes:
|
||||
- /var/tftpboot:/var/tftpboot
|
||||
ports:
|
||||
- 69:69/udp
|
||||
restart: unless-stopped
|
||||
```
|
||||
## Changelog
|
||||
v1.0.2 - 09.10.2025
|
||||
- Alpine v. 3.22.2
|
||||
|
||||
v1.0.1 - 14.08.2025
|
||||
- Alpine v. 3.22.1
|
||||
- tftp-hpa v. 5.2-r7
|
||||
|
||||
v1.0.0 - 24.06.2025
|
||||
- Alpine v. 3.22.0
|
||||
- tftp-hpa v. 5.2-r7
|
||||
Reference in New Issue
Block a user