├── .gitignore ├── Dockerfile ├── LICENSE.md ├── README.md ├── run.sh └── sshd_config /.gitignore: -------------------------------------------------------------------------------- 1 | config/ 2 | data/ 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbinet/docker-reprepro/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbinet/docker-reprepro/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbinet/docker-reprepro/HEAD/README.md -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbinet/docker-reprepro/HEAD/run.sh -------------------------------------------------------------------------------- /sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbinet/docker-reprepro/HEAD/sshd_config --------------------------------------------------------------------------------