Skip to content

Commit 895df97

Browse files
committed
New Updates in the repo
1 parent d9ba6dd commit 895df97

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed

Docker/README.md

Whitespace-only changes.

Dockerfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM debian:10
2+
LABEL MAINTAINER="Equinockx moisestapia741@gmail.com"
3+
4+
WORKDIR /home/
5+
6+
COPY . /home/
7+
8+
RUN apt-get update && \
9+
apt-get install -y --no-install-recommends openssh-server && \
10+
apt-get install -y curl && \
11+
apt-get install --no-install-recommends -y php && \
12+
apt-get install -y unzip && \
13+
apt-get clean && \
14+
rm -rf /var/lib/apt/lists/*

docker-compose.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
version: '3.7'
2+
3+
networks:
4+
internet:
5+
driver: bridge
6+
7+
services:
8+
9+
zphisher:
10+
11+
container_name: zphisher
12+
build: .
13+
image: zphisher:v0.1
14+
command: bash zphisher.sh
15+
stdin_open: true
16+
tty: true
17+
volumes:
18+
- $PWD/websites:/home/websites
19+
networks:
20+
- internet
21+
restart: always

0 commit comments

Comments
 (0)