├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ └── publish-flake-workflow.yaml ├── .gitignore ├── README.md ├── flake.lock ├── flake.nix ├── go ├── README.md ├── cmd │ └── web │ │ └── main.go ├── flake.lock ├── flake.nix ├── go.mod └── go.sum ├── hello ├── README.md ├── VERSION ├── flake.lock └── flake.nix └── script ├── README.md ├── entrypoint.sh ├── flake.lock └── flake.nix /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-nix-way/nix-docker-examples/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [lucperkins] 2 | -------------------------------------------------------------------------------- /.github/workflows/publish-flake-workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-nix-way/nix-docker-examples/HEAD/.github/workflows/publish-flake-workflow.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | result -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-nix-way/nix-docker-examples/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-nix-way/nix-docker-examples/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-nix-way/nix-docker-examples/HEAD/flake.nix -------------------------------------------------------------------------------- /go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-nix-way/nix-docker-examples/HEAD/go/README.md -------------------------------------------------------------------------------- /go/cmd/web/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-nix-way/nix-docker-examples/HEAD/go/cmd/web/main.go -------------------------------------------------------------------------------- /go/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-nix-way/nix-docker-examples/HEAD/go/flake.lock -------------------------------------------------------------------------------- /go/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-nix-way/nix-docker-examples/HEAD/go/flake.nix -------------------------------------------------------------------------------- /go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-nix-way/nix-docker-examples/HEAD/go/go.mod -------------------------------------------------------------------------------- /go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-nix-way/nix-docker-examples/HEAD/go/go.sum -------------------------------------------------------------------------------- /hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-nix-way/nix-docker-examples/HEAD/hello/README.md -------------------------------------------------------------------------------- /hello/VERSION: -------------------------------------------------------------------------------- 1 | 0.1.0 -------------------------------------------------------------------------------- /hello/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-nix-way/nix-docker-examples/HEAD/hello/flake.lock -------------------------------------------------------------------------------- /hello/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-nix-way/nix-docker-examples/HEAD/hello/flake.nix -------------------------------------------------------------------------------- /script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-nix-way/nix-docker-examples/HEAD/script/README.md -------------------------------------------------------------------------------- /script/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-nix-way/nix-docker-examples/HEAD/script/entrypoint.sh -------------------------------------------------------------------------------- /script/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-nix-way/nix-docker-examples/HEAD/script/flake.lock -------------------------------------------------------------------------------- /script/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-nix-way/nix-docker-examples/HEAD/script/flake.nix --------------------------------------------------------------------------------