- Prepare a docker compose file for a Raspberry Showcase

- Add config settings for the T-Pot Attack Map 2.1.0
This commit is contained in:
Marco Ochse
2023-07-20 18:41:56 +02:00
parent cbbd2aa6c8
commit a8f5555324
7 changed files with 755 additions and 19 deletions

View File

@ -7,15 +7,15 @@ FROM alpine:3.17
RUN apk -U --no-cache add \
build-base \
git \
libcap \
py3-pip \
libcap \
py3-pip \
python3 \
python3-dev && \
#
# Install from GitHub and setup
mkdir -p /opt && \
cd /opt/ && \
git clone https://github.com/t3chn0m4g3/t-pot-attack-map -b 2.0.1 && \
git clone https://github.com/t3chn0m4g3/t-pot-attack-map -b 2.1.0 && \
cd t-pot-attack-map && \
# git checkout eaf8d123d72a62e4c12093e4e8487e10e6ef60f3 && \
# git branch -a && \
@ -36,6 +36,7 @@ RUN apk -U --no-cache add \
rm -rf /root/* /var/cache/apk/* /opt/t-pot-attack-map/.git
#
# Start T-Pot-Attack-Map
ENV TZ=UTC
STOPSIGNAL SIGINT
USER map:map
WORKDIR /opt/t-pot-attack-map