├── .dockerignore ├── .drone.yml ├── .gitignore ├── Dockerfile ├── FILEPATH ├── LICENSE ├── Makefile ├── README.md └── start.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/rpi-gogs-raspbian/HEAD/.dockerignore -------------------------------------------------------------------------------- /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/rpi-gogs-raspbian/HEAD/.drone.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | gogs.tar.gz 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/rpi-gogs-raspbian/HEAD/Dockerfile -------------------------------------------------------------------------------- /FILEPATH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/rpi-gogs-raspbian/HEAD/FILEPATH -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/rpi-gogs-raspbian/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/rpi-gogs-raspbian/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/rpi-gogs-raspbian/HEAD/README.md -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/rpi-gogs-raspbian/HEAD/start.sh --------------------------------------------------------------------------------