Add ubuntu, debian, and alpine neofetches
This commit is contained in:
parent
d4f845dc4c
commit
e1dfb90651
4 changed files with 26 additions and 0 deletions
3
alpine-neofetch/Dockerfile
Normal file
3
alpine-neofetch/Dockerfile
Normal file
|
@ -0,0 +1,3 @@
|
|||
FROM alpine:latest
|
||||
RUN apk update && apk upgrade && apk add neofetch
|
||||
CMD neofetch
|
3
debian-neofetch/Dockerfile
Normal file
3
debian-neofetch/Dockerfile
Normal file
|
@ -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
|
17
docker-compose.yml
Normal file
17
docker-compose.yml
Normal file
|
@ -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
|
3
ubuntu-neofetch/Dockerfile
Normal file
3
ubuntu-neofetch/Dockerfile
Normal file
|
@ -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
|
Loading…
Reference in a new issue