├── .github └── workflows │ └── ci.yml ├── Dockerfile ├── LICENSE ├── README.md ├── cmd ├── .gitignore ├── configs │ └── .env ├── docker_updates.rss ├── hashes.go ├── main.go ├── parseimage.go └── rss.go ├── docker-compose.yml ├── go.mod └── go.sum /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigbone/docker-rss/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigbone/docker-rss/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigbone/docker-rss/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigbone/docker-rss/HEAD/README.md -------------------------------------------------------------------------------- /cmd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigbone/docker-rss/HEAD/cmd/.gitignore -------------------------------------------------------------------------------- /cmd/configs/.env: -------------------------------------------------------------------------------- 1 | APP_NAME=docker-rss 2 | HTTP_PORT=8000 3 | -------------------------------------------------------------------------------- /cmd/docker_updates.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigbone/docker-rss/HEAD/cmd/docker_updates.rss -------------------------------------------------------------------------------- /cmd/hashes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigbone/docker-rss/HEAD/cmd/hashes.go -------------------------------------------------------------------------------- /cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigbone/docker-rss/HEAD/cmd/main.go -------------------------------------------------------------------------------- /cmd/parseimage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigbone/docker-rss/HEAD/cmd/parseimage.go -------------------------------------------------------------------------------- /cmd/rss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigbone/docker-rss/HEAD/cmd/rss.go -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigbone/docker-rss/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigbone/docker-rss/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigbone/docker-rss/HEAD/go.sum --------------------------------------------------------------------------------