diff --git a/alpine-neofetch/Dockerfile b/alpine-neofetch/Dockerfile new file mode 100644 index 0000000..ee4ba66 --- /dev/null +++ b/alpine-neofetch/Dockerfile @@ -0,0 +1,3 @@ +FROM alpine:latest +RUN apk update && apk upgrade && apk add neofetch +CMD neofetch diff --git a/debian-neofetch/Dockerfile b/debian-neofetch/Dockerfile new file mode 100644 index 0000000..ff1afbf --- /dev/null +++ b/debian-neofetch/Dockerfile @@ -0,0 +1,3 @@ +FROM debian:latest +RUN apt-get update && apt-get upgrade -y && apt-get install -y neofetch && rm -rf /var/lib/apt +CMD neofetch diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..26eefa8 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,17 @@ +# version: '3.9' +services: + alpine_neofetch: + build: + context: alpine-neofetch + container_name: alpine-neofetch + image: git.h.hackclub.app/9pfs/alpine-neofetch + debian_neofetch: + build: + context: debian-neofetch + container_name: debian-neofetch + image: git.h.hackclub.app/9pfs/debian-neofetch + ubuntu_neofetch: + build: + context: ubuntu-neofetch + container_name: ubuntu-neofetch + image: git.h.hackclub.app/9pfs/ubuntu-neofetch diff --git a/ubuntu-neofetch/Dockerfile b/ubuntu-neofetch/Dockerfile new file mode 100644 index 0000000..7506b5e --- /dev/null +++ b/ubuntu-neofetch/Dockerfile @@ -0,0 +1,3 @@ +FROM ubuntu:latest +RUN apt-get update && apt-get upgrade -y && apt-get install -y neofetch && rm -rf /var/lib/apt +CMD neofetch