├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docker-desktop.png ├── go.mod ├── go.sum ├── internal ├── container-manager │ └── container_manager.go ├── task-runner │ └── runner.go └── types │ └── task.go ├── main.go ├── sequence-diagram.png └── task.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .vscode 3 | gopher 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockersamples/gopher-task-system/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockersamples/gopher-task-system/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockersamples/gopher-task-system/HEAD/README.md -------------------------------------------------------------------------------- /docker-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockersamples/gopher-task-system/HEAD/docker-desktop.png -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockersamples/gopher-task-system/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockersamples/gopher-task-system/HEAD/go.sum -------------------------------------------------------------------------------- /internal/container-manager/container_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockersamples/gopher-task-system/HEAD/internal/container-manager/container_manager.go -------------------------------------------------------------------------------- /internal/task-runner/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockersamples/gopher-task-system/HEAD/internal/task-runner/runner.go -------------------------------------------------------------------------------- /internal/types/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockersamples/gopher-task-system/HEAD/internal/types/task.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockersamples/gopher-task-system/HEAD/main.go -------------------------------------------------------------------------------- /sequence-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockersamples/gopher-task-system/HEAD/sequence-diagram.png -------------------------------------------------------------------------------- /task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockersamples/gopher-task-system/HEAD/task.yaml --------------------------------------------------------------------------------