├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md └── start.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | LICENSE 2 | README.* 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeskyblue/docker-gogs/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeskyblue/docker-gogs/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeskyblue/docker-gogs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeskyblue/docker-gogs/HEAD/README.md -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeskyblue/docker-gogs/HEAD/start.sh --------------------------------------------------------------------------------