├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── bin ├── boot.sh └── x11.sh ├── images └── webbian.png ├── init.sh └── xstartup /.dockerignore: -------------------------------------------------------------------------------- 1 | data 2 | README.md 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | data 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fmstrat/webbian/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fmstrat/webbian/HEAD/README.md -------------------------------------------------------------------------------- /bin/boot.sh: -------------------------------------------------------------------------------- 1 | echo "Hello World" > /tmp/boot.test -------------------------------------------------------------------------------- /bin/x11.sh: -------------------------------------------------------------------------------- 1 | echo "Hello World" > /tmp/x11.test -------------------------------------------------------------------------------- /images/webbian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fmstrat/webbian/HEAD/images/webbian.png -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fmstrat/webbian/HEAD/init.sh -------------------------------------------------------------------------------- /xstartup: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | xrdb $HOME/.Xresources 3 | startxfce4 4 | --------------------------------------------------------------------------------