Refactor docker-compose.yml & Dockerfile; Add Dockerfile_Ngx_template
This commit is contained in:
10
Dockerfile
10
Dockerfile
@@ -1,14 +1,18 @@
|
|||||||
FROM nginx:latest
|
# from custom image
|
||||||
|
FROM ngx-template:latest
|
||||||
|
|
||||||
ARG NET_NAME=kek
|
ARG NET_NAME=kek
|
||||||
ARG CONTAINER_NAME=lol
|
ARG CONTAINER_NAME=lol
|
||||||
ARG STATIC_FILE=/usr/share/nginx/html/index.html
|
ARG STATIC_FILE=/usr/share/nginx/html/index.html
|
||||||
|
|
||||||
COPY ./scripts/knocking_setup.sh /root/scripts/knocking_setup.sh
|
# change default nginx index.html
|
||||||
|
|
||||||
RUN sed -i '13,21d' $STATIC_FILE && \
|
RUN sed -i '13,21d' $STATIC_FILE && \
|
||||||
sed -i "13i <table>\
|
sed -i "13i <table>\
|
||||||
<tr><th>NETWORK</th><th>CONTAINER</th></tr>\
|
<tr><th>NETWORK</th><th>CONTAINER</th></tr>\
|
||||||
<tr><td>$NET_NAME</td><td>$CONTAINER_NAME</td></tr>\
|
<tr><td>$NET_NAME</td><td>$CONTAINER_NAME</td></tr>\
|
||||||
</table>" $STATIC_FILE
|
</table>" $STATIC_FILE
|
||||||
|
|
||||||
|
# commented lines don't work
|
||||||
|
CMD /root/scripts/knocking_setup.sh \
|
||||||
|
&& nginx && knockd -d && sleep infinity
|
||||||
|
|
||||||
|
|||||||
7
Dockerfile_Ngx_Template
Normal file
7
Dockerfile_Ngx_Template
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
FROM nginx:latest
|
||||||
|
|
||||||
|
COPY ./scripts/knocking_setup.sh /root/scripts/knocking_setup.sh
|
||||||
|
|
||||||
|
RUN apt update \
|
||||||
|
&& apt install knockd htop iptables iproute2 vim curl -y
|
||||||
|
|
||||||
28
ctl.sh
Executable file
28
ctl.sh
Executable file
@@ -0,0 +1,28 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
case "${1}" in
|
||||||
|
start )
|
||||||
|
docker-compose up -d;
|
||||||
|
;;
|
||||||
|
|
||||||
|
stop )
|
||||||
|
yes | docker-compose rm --stop;
|
||||||
|
;;
|
||||||
|
|
||||||
|
restart )
|
||||||
|
yes | docker-compose rm --stop;
|
||||||
|
docker rmi $(docker images | grep "docker_and_networks" | awk '{print $1}');
|
||||||
|
docker rmi $(docker images | grep "ngx-template" | awk '{print $1}');
|
||||||
|
docker-compose up -d;
|
||||||
|
;;
|
||||||
|
|
||||||
|
watch )
|
||||||
|
watch "docker-compose ps"
|
||||||
|
;;
|
||||||
|
|
||||||
|
* )
|
||||||
|
echo "Invalid command! :O"
|
||||||
|
exit
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
@@ -1,64 +1,86 @@
|
|||||||
version: "3"
|
version: "3"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
# ----------------------------------------------
|
||||||
|
# Reference image (for fast building)
|
||||||
|
ngx-template:
|
||||||
|
container_name: ngx-template
|
||||||
|
image: ngx-template
|
||||||
|
command: /bin/true
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: Dockerfile_Ngx_Template
|
||||||
|
|
||||||
# ----------------------------------------------
|
# ----------------------------------------------
|
||||||
ngx1-net1:
|
ngx1-net1:
|
||||||
container_name: ngx1_net1
|
container_name: ngx1_net1
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
|
dockerfile: Dockerfile
|
||||||
args:
|
args:
|
||||||
NET_NAME: net_1
|
NET_NAME: net_1
|
||||||
CONTAINER_NAME: container_1
|
CONTAINER_NAME: container_1
|
||||||
|
# for visible containers in net_3
|
||||||
|
environment:
|
||||||
|
- KNOCKING_STATUS=true
|
||||||
ports:
|
ports:
|
||||||
- "8081:80"
|
- "8081:80"
|
||||||
command: >
|
|
||||||
bash -c "apt update
|
|
||||||
&& apt install knockd iptables iproute2 vim curl -y
|
|
||||||
&& /root/scripts/knocking_setup.sh && nginx && knockd -d && sleep infinity"
|
|
||||||
networks:
|
networks:
|
||||||
- net_1
|
- net_1
|
||||||
- net_3
|
- net_3
|
||||||
|
# for iptables working
|
||||||
cap_add:
|
cap_add:
|
||||||
- NET_ADMIN
|
- NET_ADMIN
|
||||||
|
|
||||||
ngx2-net1:
|
ngx2-net1:
|
||||||
container_name: ngx2_net1
|
container_name: ngx2_net1
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
|
dockerfile: Dockerfile
|
||||||
args:
|
args:
|
||||||
NET_NAME: net_1
|
NET_NAME: net_1
|
||||||
CONTAINER_NAME: container_2
|
CONTAINER_NAME: container_2
|
||||||
networks:
|
networks:
|
||||||
- net_1
|
- net_1
|
||||||
|
cap_add:
|
||||||
|
- NET_ADMIN
|
||||||
|
|
||||||
# ----------------------------------------------
|
# ----------------------------------------------
|
||||||
ngx1-net2:
|
ngx1-net2:
|
||||||
container_name: ngx1_net2
|
container_name: ngx1_net2
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
|
dockerfile: Dockerfile
|
||||||
args:
|
args:
|
||||||
NET_NAME: net_2
|
NET_NAME: net_2
|
||||||
CONTAINER_NAME: container_1
|
CONTAINER_NAME: container_1
|
||||||
|
environment:
|
||||||
|
- KNOCKING_STATUS=true
|
||||||
ports:
|
ports:
|
||||||
- "8082:80"
|
- "8082:80"
|
||||||
command: >
|
|
||||||
bash -c "apt update
|
|
||||||
&& apt install knockd iptables iproute2 vim curl -y
|
|
||||||
&& /root/scripts/knocking_setup.sh && nginx && knockd -d && sleep infinity"
|
|
||||||
networks:
|
networks:
|
||||||
- net_2
|
- net_2
|
||||||
- net_3
|
- net_3
|
||||||
cap_add:
|
cap_add:
|
||||||
- NET_ADMIN
|
- NET_ADMIN
|
||||||
|
|
||||||
ngx2-net2:
|
ngx2-net2:
|
||||||
container_name: ngx2_net2
|
container_name: ngx2_net2
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
|
dockerfile: Dockerfile
|
||||||
args:
|
args:
|
||||||
NET_NAME: net_2
|
NET_NAME: net_2
|
||||||
CONTAINER_NAME: container_2
|
CONTAINER_NAME: container_2
|
||||||
restart: on-failure
|
|
||||||
networks:
|
networks:
|
||||||
- net_2
|
- net_2
|
||||||
|
cap_add:
|
||||||
|
- NET_ADMIN
|
||||||
|
|
||||||
# ----------------------------------------------
|
# ----------------------------------------------
|
||||||
|
# visor - container for watching
|
||||||
|
# availability nginx servers ngx1_net1 and ngx1_net2
|
||||||
|
|
||||||
visor:
|
visor:
|
||||||
container_name: visor
|
container_name: visor
|
||||||
image: ubuntu:latest
|
image: ubuntu:latest
|
||||||
@@ -69,13 +91,16 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- net_3
|
- net_3
|
||||||
|
|
||||||
|
# ----------------------------------------------
|
||||||
networks:
|
networks:
|
||||||
net_1:
|
net_1:
|
||||||
net_2:
|
net_2:
|
||||||
net_3:
|
net_3:
|
||||||
|
# custom subnet for setup port knocking via script
|
||||||
driver: bridge
|
driver: bridge
|
||||||
ipam:
|
ipam:
|
||||||
driver: default
|
driver: default
|
||||||
config:
|
config:
|
||||||
- subnet: "172.28.0.0/16"
|
- subnet: "172.28.0.0/16"
|
||||||
gateway: "172.28.0.1"
|
gateway: "172.28.0.1"
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,12 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
[[ -n $KNOCKING_STATUS ]] &&
|
||||||
|
INTERFACE=$(ip -br a | grep -E "172.28" | awk '{print $1}') || \
|
||||||
|
INTERFACE=$(ip -br a | grep -E "^eth" | awk '{print $1}')
|
||||||
|
|
||||||
echo -E "
|
echo -E "
|
||||||
[options]
|
[options]
|
||||||
Interface = eth1
|
Interface = ${INTERFACE%@*}
|
||||||
|
|
||||||
[openNGINX]
|
[openNGINX]
|
||||||
sequence = 8100, 7200, 13000
|
sequence = 8100, 7200, 13000
|
||||||
|
|||||||
Reference in New Issue
Block a user