Skip to content

Commit 8f854f1

Browse files
authored
Add files via upload
1 parent e4f09bf commit 8f854f1

File tree

6 files changed

+102
-0
lines changed

6 files changed

+102
-0
lines changed

docker/linux/Archlinux/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
docker:
2+
sudo docker build -f arch.Dockerfile -t archlinux1 .
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
FROM archlinux
2+
LABEL maintainer "BY: suchsoak"
3+
LABEL maintainer "V.1.0.0"
4+
RUN pacman-key --init
5+
RUN pacman -Syyuu --noconfirm
6+
RUN pacman -Sy wget git vim make net-tools wireless_tools nano xdg-utils openssh neofetch inxi smartmontools lua --noconfirm
7+
RUN pacman --noconfirm -Sy \
8+
gcc \
9+
curl \
10+
htop \
11+
nodejs \
12+
ruby \
13+
apache \
14+
tar \
15+
jre-openjdk
16+
RUN pacman -Sy sudo --noconfirm
17+
RUN pacman -Sy mysql --noconfirm
18+
RUN sudo pacman -S python3 python-pip --noconfirm

docker/linux/fedora/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
docker:
2+
sudo docker build -f fedora.Dockerfile -t fedora1 .
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
FROM fedora
2+
LABEL maintainer "BY: suchsoak"
3+
LABEL maintainer "V.1.0.0"
4+
RUN dnf update -y
5+
RUN dnf update --refresh
6+
RUN dnf update && dnf install -y \
7+
make \
8+
curl \
9+
wget \
10+
git \
11+
vim \
12+
htop \
13+
net-tools \
14+
openssh \
15+
htop \
16+
neofetch \
17+
inxi \
18+
tar \
19+
xdg-utils \
20+
smartmontools \
21+
snapd \
22+
nano \
23+
java-latest-openjdk\
24+
iw \
25+
gcc \
26+
g++ \
27+
pip \
28+
ruby \
29+
iw \
30+
python3 \
31+
redhat-lsb-core \
32+
mysql-server \
33+
httpd \
34+
nginx
35+
RUN python3 -m pip install --upgrade pip
36+
RUN dnf install sudo -y
37+
RUN sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
38+
RUN sudo dnf check-update
39+
RUN sudo dnf update -y

docker/linux/ubuntu/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
docker:
2+
sudo docker build -f ubuntu.Dockerfile -t ubuntu1 .
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
FROM ubuntu
2+
LABEL maintainer "BY: suchsoak"
3+
LABEL maintainer "V.1.0.0"
4+
RUN apt-get update && apt-get upgrade -y
5+
RUN dpkg --configure -a
6+
RUN apt-get update && apt-get install -y \
7+
make \
8+
curl \
9+
wget \
10+
git \
11+
vim \
12+
htop \
13+
net-tools \
14+
ssh \
15+
neofetch \
16+
inxi \
17+
tar \
18+
smartmontools \
19+
snap \
20+
build-essential \
21+
gcc \
22+
pip \
23+
nano \
24+
default-jdk \
25+
default-jre \
26+
ruby \
27+
python3 \
28+
lsb-release \
29+
mysql-server \
30+
apache2 \
31+
nginx
32+
RUN apt-get install -y build-essential libcurl4-openssl-dev libxml2 libxml2-dev libxslt1-dev ruby-dev libgmp-dev zlib1g-dev
33+
RUN apt-get install build-essential gcc g++ -y
34+
RUN apt-get install sudo -y
35+
RUN sudo apt-get update && sudo apt-get upgrade -y
36+
RUN python3 -m pip install --upgrade pip
37+
# EXPOSE 8080
38+
# ENTRYPOINT [ "apt-get", "install", "-y", "postgresql" ]
39+
RUN ifconfig

0 commit comments

Comments
 (0)