├── .dockerignore ├── Dockerfile ├── README.md ├── demo.png └── docker-entrypoint.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | *.jar 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phith0n/projector-runner/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phith0n/projector-runner/HEAD/README.md -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phith0n/projector-runner/HEAD/demo.png -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phith0n/projector-runner/HEAD/docker-entrypoint.sh --------------------------------------------------------------------------------