├── .github └── workflows │ └── push.yaml ├── .gitignore ├── INTRO.md ├── README.md ├── aviation-checklist ├── Containerfile └── README.md ├── bootc-httpd-centos ├── Containerfile ├── README.md └── index.html ├── bootc-httpd-fedora ├── Containerfile ├── README.md └── index.html ├── bootc-k3s-master ├── Containerfile ├── README.md └── usr │ ├── lib │ └── systemd │ │ └── system │ │ ├── bootc-generic-growpart.service │ │ ├── hostname.service │ │ └── k3s.service │ └── libexec │ └── bootc-generic-growpart ├── bootc-k3s-node ├── Containerfile ├── README.md └── usr │ ├── lib │ └── systemd │ │ └── system │ │ ├── bootc-generic-growpart.service │ │ ├── hostname.service │ │ └── k3s.service │ └── libexec │ └── bootc-generic-growpart ├── bootc-nvidia-base-fedora ├── Containerfile ├── README.md ├── dkms.sh └── usr │ └── lib │ └── systemd │ └── system │ └── nvidia-toolkit-firstboot.service ├── cat ├── .drone.yml ├── .gitattributes ├── .hadolint.yaml ├── .wakatime-project ├── Containerfile ├── MP4 │ └── 1080 │ │ └── video.mp4 ├── README.md ├── renovate.json └── scripts │ ├── 40-roll.sh │ ├── 70-nginx.sh │ └── index │ └── 80-index.sh ├── gameserver ├── .dockerignore ├── .gitignore ├── .npmrc ├── .prettierrc ├── Containerfile ├── README.md ├── jsconfig.json ├── package-lock.json ├── package.json ├── postcss.config.js ├── src │ ├── app.css │ ├── app.d.ts │ ├── app.html │ ├── lib │ │ └── index.js │ └── routes │ │ ├── +layout.svelte │ │ ├── +page.server.ts │ │ └── +page.svelte ├── static │ ├── bongo.gif │ └── favicon.png ├── svelte.config.js ├── tailwind.config.js ├── vite.config.js └── yarn.lock ├── gen.sh ├── hello ├── Containerfile ├── README.md ├── go.mod ├── go.sum ├── main.go └── public │ ├── index.html │ ├── logo.png │ ├── script.js │ └── style.css ├── helloworld ├── Containerfile ├── README.md └── main.sh ├── hugo ├── Containerfile ├── README.md └── run-hugo ├── index ├── Containerfile ├── README.md ├── index.html └── main.sh ├── jrl ├── Containerfile ├── README.md └── journal.sh ├── kasm-chromium ├── Containerfile ├── README.md ├── custom_startup.sh ├── install_chromium.sh └── urlblocklist.json ├── kasm-obs ├── Containerfile ├── README.md └── custom_startup.sh ├── rickroll ├── .drone.yml ├── .gitattributes ├── .hadolint.yaml ├── .wakatime-project ├── Containerfile ├── MP4 │ └── 1080 │ │ └── video.mp4 ├── README.md ├── renovate.json └── scripts │ ├── 40-roll.sh │ ├── 70-nginx.sh │ └── index │ └── 80-index.sh ├── update.sh └── vulkan-mac-silicon-gpu-stress-test ├── Containerfile └── README.md /.github/workflows/push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/.github/workflows/push.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | build-args.conf 3 | auth.json 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/INTRO.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/README.md -------------------------------------------------------------------------------- /aviation-checklist/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/aviation-checklist/Containerfile -------------------------------------------------------------------------------- /aviation-checklist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/aviation-checklist/README.md -------------------------------------------------------------------------------- /bootc-httpd-centos/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/bootc-httpd-centos/Containerfile -------------------------------------------------------------------------------- /bootc-httpd-centos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/bootc-httpd-centos/README.md -------------------------------------------------------------------------------- /bootc-httpd-centos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/bootc-httpd-centos/index.html -------------------------------------------------------------------------------- /bootc-httpd-fedora/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/bootc-httpd-fedora/Containerfile -------------------------------------------------------------------------------- /bootc-httpd-fedora/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/bootc-httpd-fedora/README.md -------------------------------------------------------------------------------- /bootc-httpd-fedora/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/bootc-httpd-fedora/index.html -------------------------------------------------------------------------------- /bootc-k3s-master/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/bootc-k3s-master/Containerfile -------------------------------------------------------------------------------- /bootc-k3s-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/bootc-k3s-master/README.md -------------------------------------------------------------------------------- /bootc-k3s-master/usr/lib/systemd/system/bootc-generic-growpart.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/bootc-k3s-master/usr/lib/systemd/system/bootc-generic-growpart.service -------------------------------------------------------------------------------- /bootc-k3s-master/usr/lib/systemd/system/hostname.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/bootc-k3s-master/usr/lib/systemd/system/hostname.service -------------------------------------------------------------------------------- /bootc-k3s-master/usr/lib/systemd/system/k3s.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/bootc-k3s-master/usr/lib/systemd/system/k3s.service -------------------------------------------------------------------------------- /bootc-k3s-master/usr/libexec/bootc-generic-growpart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/bootc-k3s-master/usr/libexec/bootc-generic-growpart -------------------------------------------------------------------------------- /bootc-k3s-node/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/bootc-k3s-node/Containerfile -------------------------------------------------------------------------------- /bootc-k3s-node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/bootc-k3s-node/README.md -------------------------------------------------------------------------------- /bootc-k3s-node/usr/lib/systemd/system/bootc-generic-growpart.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/bootc-k3s-node/usr/lib/systemd/system/bootc-generic-growpart.service -------------------------------------------------------------------------------- /bootc-k3s-node/usr/lib/systemd/system/hostname.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/bootc-k3s-node/usr/lib/systemd/system/hostname.service -------------------------------------------------------------------------------- /bootc-k3s-node/usr/lib/systemd/system/k3s.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/bootc-k3s-node/usr/lib/systemd/system/k3s.service -------------------------------------------------------------------------------- /bootc-k3s-node/usr/libexec/bootc-generic-growpart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/bootc-k3s-node/usr/libexec/bootc-generic-growpart -------------------------------------------------------------------------------- /bootc-nvidia-base-fedora/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/bootc-nvidia-base-fedora/Containerfile -------------------------------------------------------------------------------- /bootc-nvidia-base-fedora/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/bootc-nvidia-base-fedora/README.md -------------------------------------------------------------------------------- /bootc-nvidia-base-fedora/dkms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/bootc-nvidia-base-fedora/dkms.sh -------------------------------------------------------------------------------- /bootc-nvidia-base-fedora/usr/lib/systemd/system/nvidia-toolkit-firstboot.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/bootc-nvidia-base-fedora/usr/lib/systemd/system/nvidia-toolkit-firstboot.service -------------------------------------------------------------------------------- /cat/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/cat/.drone.yml -------------------------------------------------------------------------------- /cat/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/cat/.gitattributes -------------------------------------------------------------------------------- /cat/.hadolint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/cat/.hadolint.yaml -------------------------------------------------------------------------------- /cat/.wakatime-project: -------------------------------------------------------------------------------- 1 | docker-rickroll -------------------------------------------------------------------------------- /cat/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/cat/Containerfile -------------------------------------------------------------------------------- /cat/MP4/1080/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/cat/MP4/1080/video.mp4 -------------------------------------------------------------------------------- /cat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/cat/README.md -------------------------------------------------------------------------------- /cat/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/cat/renovate.json -------------------------------------------------------------------------------- /cat/scripts/40-roll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/cat/scripts/40-roll.sh -------------------------------------------------------------------------------- /cat/scripts/70-nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/cat/scripts/70-nginx.sh -------------------------------------------------------------------------------- /cat/scripts/index/80-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/cat/scripts/index/80-index.sh -------------------------------------------------------------------------------- /gameserver/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/gameserver/.dockerignore -------------------------------------------------------------------------------- /gameserver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/gameserver/.gitignore -------------------------------------------------------------------------------- /gameserver/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | resolution-mode=highest 3 | -------------------------------------------------------------------------------- /gameserver/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/gameserver/.prettierrc -------------------------------------------------------------------------------- /gameserver/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/gameserver/Containerfile -------------------------------------------------------------------------------- /gameserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/gameserver/README.md -------------------------------------------------------------------------------- /gameserver/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/gameserver/jsconfig.json -------------------------------------------------------------------------------- /gameserver/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/gameserver/package-lock.json -------------------------------------------------------------------------------- /gameserver/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/gameserver/package.json -------------------------------------------------------------------------------- /gameserver/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/gameserver/postcss.config.js -------------------------------------------------------------------------------- /gameserver/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/gameserver/src/app.css -------------------------------------------------------------------------------- /gameserver/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/gameserver/src/app.d.ts -------------------------------------------------------------------------------- /gameserver/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/gameserver/src/app.html -------------------------------------------------------------------------------- /gameserver/src/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/gameserver/src/lib/index.js -------------------------------------------------------------------------------- /gameserver/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/gameserver/src/routes/+layout.svelte -------------------------------------------------------------------------------- /gameserver/src/routes/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/gameserver/src/routes/+page.server.ts -------------------------------------------------------------------------------- /gameserver/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/gameserver/src/routes/+page.svelte -------------------------------------------------------------------------------- /gameserver/static/bongo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/gameserver/static/bongo.gif -------------------------------------------------------------------------------- /gameserver/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/gameserver/static/favicon.png -------------------------------------------------------------------------------- /gameserver/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/gameserver/svelte.config.js -------------------------------------------------------------------------------- /gameserver/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/gameserver/tailwind.config.js -------------------------------------------------------------------------------- /gameserver/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/gameserver/vite.config.js -------------------------------------------------------------------------------- /gameserver/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/gameserver/yarn.lock -------------------------------------------------------------------------------- /gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/gen.sh -------------------------------------------------------------------------------- /hello/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/hello/Containerfile -------------------------------------------------------------------------------- /hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/hello/README.md -------------------------------------------------------------------------------- /hello/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/hello/go.mod -------------------------------------------------------------------------------- /hello/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/hello/go.sum -------------------------------------------------------------------------------- /hello/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/hello/main.go -------------------------------------------------------------------------------- /hello/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/hello/public/index.html -------------------------------------------------------------------------------- /hello/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/hello/public/logo.png -------------------------------------------------------------------------------- /hello/public/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/hello/public/script.js -------------------------------------------------------------------------------- /hello/public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/hello/public/style.css -------------------------------------------------------------------------------- /helloworld/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/helloworld/Containerfile -------------------------------------------------------------------------------- /helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/helloworld/README.md -------------------------------------------------------------------------------- /helloworld/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/helloworld/main.sh -------------------------------------------------------------------------------- /hugo/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/hugo/Containerfile -------------------------------------------------------------------------------- /hugo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/hugo/README.md -------------------------------------------------------------------------------- /hugo/run-hugo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/hugo/run-hugo -------------------------------------------------------------------------------- /index/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/index/Containerfile -------------------------------------------------------------------------------- /index/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/index/README.md -------------------------------------------------------------------------------- /index/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/index/index.html -------------------------------------------------------------------------------- /index/main.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | python3 -m http.server 8080 3 | -------------------------------------------------------------------------------- /jrl/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/jrl/Containerfile -------------------------------------------------------------------------------- /jrl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/jrl/README.md -------------------------------------------------------------------------------- /jrl/journal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/jrl/journal.sh -------------------------------------------------------------------------------- /kasm-chromium/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/kasm-chromium/Containerfile -------------------------------------------------------------------------------- /kasm-chromium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/kasm-chromium/README.md -------------------------------------------------------------------------------- /kasm-chromium/custom_startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/kasm-chromium/custom_startup.sh -------------------------------------------------------------------------------- /kasm-chromium/install_chromium.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/kasm-chromium/install_chromium.sh -------------------------------------------------------------------------------- /kasm-chromium/urlblocklist.json: -------------------------------------------------------------------------------- 1 | { 2 | "URLBlocklist": ["file://*"] 3 | } -------------------------------------------------------------------------------- /kasm-obs/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/kasm-obs/Containerfile -------------------------------------------------------------------------------- /kasm-obs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/kasm-obs/README.md -------------------------------------------------------------------------------- /kasm-obs/custom_startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/kasm-obs/custom_startup.sh -------------------------------------------------------------------------------- /rickroll/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/rickroll/.drone.yml -------------------------------------------------------------------------------- /rickroll/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/rickroll/.gitattributes -------------------------------------------------------------------------------- /rickroll/.hadolint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/rickroll/.hadolint.yaml -------------------------------------------------------------------------------- /rickroll/.wakatime-project: -------------------------------------------------------------------------------- 1 | docker-rickroll -------------------------------------------------------------------------------- /rickroll/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/rickroll/Containerfile -------------------------------------------------------------------------------- /rickroll/MP4/1080/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/rickroll/MP4/1080/video.mp4 -------------------------------------------------------------------------------- /rickroll/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/rickroll/README.md -------------------------------------------------------------------------------- /rickroll/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/rickroll/renovate.json -------------------------------------------------------------------------------- /rickroll/scripts/40-roll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/rickroll/scripts/40-roll.sh -------------------------------------------------------------------------------- /rickroll/scripts/70-nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/rickroll/scripts/70-nginx.sh -------------------------------------------------------------------------------- /rickroll/scripts/index/80-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/rickroll/scripts/index/80-index.sh -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/update.sh -------------------------------------------------------------------------------- /vulkan-mac-silicon-gpu-stress-test/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/vulkan-mac-silicon-gpu-stress-test/Containerfile -------------------------------------------------------------------------------- /vulkan-mac-silicon-gpu-stress-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrage/containerfiles/HEAD/vulkan-mac-silicon-gpu-stress-test/README.md --------------------------------------------------------------------------------