An open API service indexing awesome lists of open source software.

https://github.com/suuhm/freetz-legacy

Easy to use Dockerfile for compiling old version freetz images
https://github.com/suuhm/freetz-legacy

avm compile docker flash-images freetz freetz-og fritzbox linux old-version windows

Last synced: 3 months ago
JSON representation

Easy to use Dockerfile for compiling old version freetz images

Awesome Lists containing this project

README

        

# freetz-legacy
Easy to use Dockerfile for compiling old freetz images

## Install

```bash
apt install docker.io
git clone https://github.com/suuhm/freetz-legacy
cd freetz-legacy

# Build docker
docker build -t freetz-builder .

```

## Run
```bash
# Check Docker images
#docker rmi
#docker images

# Docker kill ps
#docker ps -a
#docker rm -f

docker run -it --name freetz-build1 freetz-builder /bin/bash -c "cd freetz && exec /bin/bash"
```

## Run container and start directly `make menuconfig`
```bash
docker run -it --name freetz-build1 freetz-builder /bin/bash -c "cd freetz && make menuconfig && exec /bin/bash"
```

## Run with mounted images folder (optional)
```bash
mkdir -p $HOME/built_images
docker run -it --name freetz-build1 -v $HOME/built_images:/home/freetzuser/built_images freetz-builder /bin/bash -c "cd freetz && exec /bin/bash"
```

## Share the builded images
```bash
cd $HOME/built_images
python3 -m http.server 7777
```

### Now open the your browser on :7777 and download the file
![grafik](https://github.com/user-attachments/assets/f02b6f03-a156-43dd-b9e0-af1784b76d5c)

## Should also work on windows as well
If you have any questions, write an issue