- Full Spanish interface (all UI text, popups, charts, tables) - Dark and light mode support - Disclaimer banner: no data logged, public European service - Footer: Servicio ofrecido por Cloud Host (cloudhost.es) - Docker: single container (Redis + DataServer + AttackMapServer) - Remote T-Pot support via ELASTICSEARCH_URL env var (direct or SSH tunnel) - Based on telekom-security/t-pot-attack-map (Apache 2.0) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
33 lines
827 B
Docker
33 lines
827 B
Docker
FROM python:3.12-slim
|
|
|
|
LABEL maintainer="honeypot.es"
|
|
LABEL description="T-Pot Attack Map - Mapa de ataques en tiempo real"
|
|
|
|
# Install system dependencies
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
redis-server \
|
|
supervisor \
|
|
openssh-client \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app
|
|
|
|
# Install Python dependencies
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Copy application files
|
|
COPY DataServer.py .
|
|
COPY AttackMapServer.py .
|
|
COPY supervisord.conf .
|
|
COPY static/ static/
|
|
|
|
# Expose web port
|
|
EXPOSE 8080
|
|
|
|
# Health check
|
|
HEALTHCHECK --interval=30s --timeout=10s --start-period=30s --retries=3 \
|
|
CMD python3 -c "import urllib.request; urllib.request.urlopen('http://localhost:8080')" || exit 1
|
|
|
|
CMD ["supervisord", "-c", "/app/supervisord.conf"]
|