mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-07-02 01:27:27 -04:00
continue work on builder
This commit is contained in:
@ -15,7 +15,8 @@ TPOT_DOCKER_REPO=dtagdevsec
|
|||||||
TPOT_GHCR_REPO=ghcr.io/telekom-security
|
TPOT_GHCR_REPO=ghcr.io/telekom-security
|
||||||
|
|
||||||
# T-Pot Version Tag
|
# T-Pot Version Tag
|
||||||
TPOT_VERSION=24.04
|
#TPOT_VERSION=24.04
|
||||||
|
TPOT_VERSION=testing
|
||||||
|
|
||||||
# T-Pot platforms (architectures)
|
# T-Pot platforms (architectures)
|
||||||
# Most docker features are available on linux
|
# Most docker features are available on linux
|
||||||
|
@ -1,58 +1,376 @@
|
|||||||
|
# T-Pot Docker Compose Image Builder (use only for building docker images)
|
||||||
|
# Settings in .env
|
||||||
|
|
||||||
|
##################
|
||||||
|
#### Anchors
|
||||||
|
##################
|
||||||
|
|
||||||
|
# Common build config
|
||||||
|
x-common-build: &common-build
|
||||||
|
dockerfile: ./Dockerfile
|
||||||
|
platforms:
|
||||||
|
- ${TPOT_AMD64}
|
||||||
|
- ${TPOT_ARM64}
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
##################
|
##################
|
||||||
#### Honeypots
|
#### Honeypots
|
||||||
##################
|
##################
|
||||||
|
|
||||||
# Beelzebub service
|
# Adbhoney
|
||||||
|
adbhoney:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/adbhoney:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/adbhoney:${TPOT_VERSION}
|
||||||
|
context: ../adbhoney/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
# Beelzebub
|
||||||
beelzebub:
|
beelzebub:
|
||||||
image: ${TPOT_DOCKER_REPO}/beelzebub:${TPOT_VERSION}
|
image: ${TPOT_DOCKER_REPO}/beelzebub:${TPOT_VERSION}
|
||||||
build:
|
build:
|
||||||
tags:
|
tags:
|
||||||
- ${TPOT_GHCR_REPO}/beelzebub:${TPOT_VERSION}
|
- ${TPOT_GHCR_REPO}/beelzebub:${TPOT_VERSION}
|
||||||
context: ../beelzebub/
|
context: ../beelzebub/
|
||||||
dockerfile: ./Dockerfile
|
<<: *common-build
|
||||||
platforms:
|
|
||||||
- ${TPOT_AMD64}
|
# Ciscoasa
|
||||||
- ${TPOT_ARM64}
|
ciscoasa:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/ciscoasa:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/ciscoasa:${TPOT_VERSION}
|
||||||
|
context: ../ciscoasa/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
# Citrixhoneypot
|
||||||
|
citrixhoneypot:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/citrixhoneypot:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/citrixhoneypot:${TPOT_VERSION}
|
||||||
|
context: ../citrixhoneypot/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
# Conpot
|
||||||
|
conpot:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/conpot:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/conpot:${TPOT_VERSION}
|
||||||
|
context: ../conpot/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
# Cowrie
|
||||||
|
cowrie:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/cowrie:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/cowrie:${TPOT_VERSION}
|
||||||
|
context: ../cowrie/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
# Ddospot
|
||||||
|
ddospot:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/ddospot:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/ddospot:${TPOT_VERSION}
|
||||||
|
context: ../ddospot/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
# Dicompot
|
||||||
|
dicompot:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/dicompot:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/dicompot:${TPOT_VERSION}
|
||||||
|
context: ../dicompot/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
# Dionaea
|
||||||
|
dionaea:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/dionaea:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/dionaea:${TPOT_VERSION}
|
||||||
|
context: ../dionaea/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
# Elasticpot
|
||||||
|
elasticpot:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/elasticpot:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/elasticpot:${TPOT_VERSION}
|
||||||
|
context: ../elasticpot/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
# Endlessh
|
||||||
|
endlessh:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/endlessh:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/endlessh:${TPOT_VERSION}
|
||||||
|
context: ../endlessh/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
# Glutton
|
||||||
|
# glutton:
|
||||||
|
# image: ${TPOT_DOCKER_REPO}/glutton:${TPOT_VERSION}
|
||||||
|
## build:
|
||||||
|
# tags:
|
||||||
|
# - ${TPOT_GHCR_REPO}/glutton:${TPOT_VERSION}
|
||||||
|
# context: ../glutton/
|
||||||
|
# <<: *common-build
|
||||||
|
|
||||||
|
# Hellpot
|
||||||
|
hellpot:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/hellpot:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/hellpot:${TPOT_VERSION}
|
||||||
|
context: ../hellpot/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
# Herlading
|
||||||
|
heralding:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/heralding:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/heralding:${TPOT_VERSION}
|
||||||
|
context: ../heralding/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
# Honeypots
|
||||||
|
honeypots:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/honeypots:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/honeypots:${TPOT_VERSION}
|
||||||
|
context: ../honeypots/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
# Honeytrap
|
||||||
|
honeytrap:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/honeytrap:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/honeytrap:${TPOT_VERSION}
|
||||||
|
context: ../honeytrap/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
# Ipphoney
|
||||||
|
ipphoney:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/ipphoney:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/ipphoney:${TPOT_VERSION}
|
||||||
|
context: ../ipphoney/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
# Log4pot
|
||||||
|
log4pot:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/log4pot:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/log4pot:${TPOT_VERSION}
|
||||||
|
context: ../log4pot/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
# Mailoney
|
||||||
|
mailoney:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/mailoney:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/mailoney:${TPOT_VERSION}
|
||||||
|
context: ../mailoney/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
# Medpot
|
||||||
|
medpot:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/medpot:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/medpot:${TPOT_VERSION}
|
||||||
|
context: ../medpot/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
# Redishoneypot
|
||||||
|
redishoneypot:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/redishoneypot:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/redishoneypot:${TPOT_VERSION}
|
||||||
|
context: ../redishoneypot/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
# Sentrypeer
|
||||||
|
sentrypeer:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/sentrypeer:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/sentrypeer:${TPOT_VERSION}
|
||||||
|
context: ../sentrypeer/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
#### Snare / Tanner
|
||||||
|
## Tanner Redis
|
||||||
|
redis:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/redis:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/redis:${TPOT_VERSION}
|
||||||
|
context: ../tanner/redis/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
## PHP Sandbox
|
||||||
|
phpox:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/phpox:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/phpox:${TPOT_VERSION}
|
||||||
|
context: ../tanner/phpox/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
## Tanner
|
||||||
|
tanner:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/tanner:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/tanner:${TPOT_VERSION}
|
||||||
|
context: ../tanner/tanner/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
## Snare
|
||||||
|
snare:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/snare:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/snare:${TPOT_VERSION}
|
||||||
|
context: ../tanner/snare/
|
||||||
|
<<: *common-build
|
||||||
|
####
|
||||||
|
|
||||||
|
# Wordpot
|
||||||
|
wordpot:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/wordpot:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/wordpot:${TPOT_VERSION}
|
||||||
|
context: ../wordpot/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
|
||||||
|
##################
|
||||||
|
#### NSM
|
||||||
|
##################
|
||||||
|
|
||||||
|
# Fatt
|
||||||
|
fatt:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/fatt:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/fatt:${TPOT_VERSION}
|
||||||
|
context: ../fatt/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
# P0f
|
||||||
|
p0f:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/p0f:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/p0f:${TPOT_VERSION}
|
||||||
|
context: ../p0f/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
# Suricata
|
||||||
|
suricata:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/suricata:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/suricata:${TPOT_VERSION}
|
||||||
|
context: ../suricata/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
|
||||||
##################
|
##################
|
||||||
#### Tools
|
#### Tools
|
||||||
##################
|
##################
|
||||||
|
|
||||||
# T-Pot Init Service
|
# T-Pot Init
|
||||||
tpotinit:
|
tpotinit:
|
||||||
image: ${TPOT_DOCKER_REPO}/tpotinit:${TPOT_VERSION}
|
image: ${TPOT_DOCKER_REPO}/tpotinit:${TPOT_VERSION}
|
||||||
build:
|
build:
|
||||||
tags:
|
tags:
|
||||||
- ${TPOT_GHCR_REPO}/tpotinit:${TPOT_VERSION}
|
- ${TPOT_GHCR_REPO}/tpotinit:${TPOT_VERSION}
|
||||||
context: ../tpotinit/
|
context: ../tpotinit/
|
||||||
dockerfile: ./Dockerfile
|
<<: *common-build
|
||||||
platforms:
|
|
||||||
- ${TPOT_AMD64}
|
|
||||||
- ${TPOT_ARM64}
|
|
||||||
|
|
||||||
#### ELK
|
#### ELK
|
||||||
## Logstash service
|
## Elasticsearch
|
||||||
|
elasticsearch:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/elasticsearch:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/elasticsearch:${TPOT_VERSION}
|
||||||
|
context: ../elk/elasticsearch/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
## Kibana
|
||||||
|
kibana:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/kibana:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/kibana:${TPOT_VERSION}
|
||||||
|
context: ../elk/kibana/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
## Logstash
|
||||||
logstash:
|
logstash:
|
||||||
image: ${TPOT_DOCKER_REPO}/logstash:${TPOT_VERSION}
|
image: ${TPOT_DOCKER_REPO}/logstash:${TPOT_VERSION}
|
||||||
build:
|
build:
|
||||||
tags:
|
tags:
|
||||||
- ${TPOT_GHCR_REPO}/logstash:${TPOT_VERSION}
|
- ${TPOT_GHCR_REPO}/logstash:${TPOT_VERSION}
|
||||||
context: ../elk/logstash/
|
context: ../elk/logstash/
|
||||||
dockerfile: ./Dockerfile
|
<<: *common-build
|
||||||
platforms:
|
|
||||||
- ${TPOT_AMD64}
|
|
||||||
- ${TPOT_ARM64}
|
|
||||||
|
|
||||||
# Map Web Service
|
## Map Web
|
||||||
map:
|
map:
|
||||||
image: ${TPOT_DOCKER_REPO}/map:${TPOT_VERSION}
|
image: ${TPOT_DOCKER_REPO}/map:${TPOT_VERSION}
|
||||||
build:
|
build:
|
||||||
tags:
|
tags:
|
||||||
- ${TPOT_GHCR_REPO}/map:${TPOT_VERSION}
|
- ${TPOT_GHCR_REPO}/map:${TPOT_VERSION}
|
||||||
context: ../elk/map/
|
context: ../elk/map/
|
||||||
dockerfile: ./Dockerfile
|
<<: *common-build
|
||||||
platforms:
|
####
|
||||||
- ${TPOT_AMD64}
|
|
||||||
- ${TPOT_ARM64}
|
# Ewsposter
|
||||||
|
ewsposter:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/ewsposter:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/ewsposter:${TPOT_VERSION}
|
||||||
|
context: ../ewsposter/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
# Nginx
|
||||||
|
nginx:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/nginx:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/nginx:${TPOT_VERSION}
|
||||||
|
context: ../nginx/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
# Spiderfoot
|
||||||
|
spiderfoot:
|
||||||
|
image: ${TPOT_DOCKER_REPO}/spiderfoot:${TPOT_VERSION}
|
||||||
|
build:
|
||||||
|
tags:
|
||||||
|
- ${TPOT_GHCR_REPO}/spiderfoot:${TPOT_VERSION}
|
||||||
|
context: ../spiderfoot/
|
||||||
|
<<: *common-build
|
||||||
|
|
||||||
|
@ -36,4 +36,4 @@ STOPSIGNAL SIGINT
|
|||||||
HEALTHCHECK --interval=5m --timeout=30s --retries=3 CMD python3 /cpu_check.py $(pgrep -of run.py) 99
|
HEALTHCHECK --interval=5m --timeout=30s --retries=3 CMD python3 /cpu_check.py $(pgrep -of run.py) 99
|
||||||
USER adbhoney:adbhoney
|
USER adbhoney:adbhoney
|
||||||
WORKDIR /opt/adbhoney/
|
WORKDIR /opt/adbhoney/
|
||||||
CMD /usr/bin/python3 run.py
|
CMD ["/usr/bin/python3", "run.py"]
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM golang:1.21-alpine as builder
|
FROM golang:1.21-alpine AS builder
|
||||||
#
|
#
|
||||||
# Include dist
|
# Include dist
|
||||||
COPY dist/ /root/dist/
|
COPY dist/ /root/dist/
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM ubuntu:22.04
|
FROM debian:12
|
||||||
#
|
#
|
||||||
# VARS
|
# VARS
|
||||||
ENV KB_VER=8.14.2
|
ENV KB_VER=8.14.2
|
||||||
|
@ -63,4 +63,4 @@ HEALTHCHECK --retries=10 CMD curl -s -XGET 'http://127.0.0.1:9600'
|
|||||||
#
|
#
|
||||||
# Start logstash
|
# Start logstash
|
||||||
USER logstash:logstash
|
USER logstash:logstash
|
||||||
CMD entrypoint.sh
|
CMD ["./entrypoint.sh"]
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM alpine:3.16 as builder
|
FROM alpine:3.16 AS builder
|
||||||
#
|
#
|
||||||
# Include dist
|
# Include dist
|
||||||
ADD dist/ /root/dist/
|
ADD dist/ /root/dist/
|
||||||
|
@ -24,7 +24,7 @@ RUN apk -U --no-cache add \
|
|||||||
py3-wheel && \
|
py3-wheel && \
|
||||||
pip3 install --break-system-packages --upgrade pip && \
|
pip3 install --break-system-packages --upgrade pip && \
|
||||||
pip3 install --break-system-packages --no-cache-dir configparser hpfeeds3 influxdb influxdb-client xmljson && \
|
pip3 install --break-system-packages --no-cache-dir configparser hpfeeds3 influxdb influxdb-client xmljson && \
|
||||||
|
#
|
||||||
#
|
#
|
||||||
# Setup ewsposter
|
# Setup ewsposter
|
||||||
git clone https://github.com/telekom-security/ewsposter -b v1.25.0 /opt/ewsposter && \
|
git clone https://github.com/telekom-security/ewsposter -b v1.25.0 /opt/ewsposter && \
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM golang:1.21-alpine as builder
|
FROM golang:1.21-alpine AS builder
|
||||||
#
|
#
|
||||||
# Include dist
|
# Include dist
|
||||||
COPY dist/ /root/dist/
|
COPY dist/ /root/dist/
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM golang:1.21-alpine as builder
|
FROM golang:1.21-alpine AS builder
|
||||||
#
|
#
|
||||||
# Setup apk
|
# Setup apk
|
||||||
RUN apk -U --no-cache add \
|
RUN apk -U --no-cache add \
|
||||||
|
@ -36,4 +36,4 @@ RUN apk -U --no-cache add \
|
|||||||
rm -rf /var/cache/apk/*
|
rm -rf /var/cache/apk/*
|
||||||
#
|
#
|
||||||
# Start nginx
|
# Start nginx
|
||||||
CMD nginx -g 'daemon off;'
|
CMD ["nginx", "-g", "daemon off;"]
|
||||||
|
@ -21,4 +21,4 @@ RUN apk -U --no-cache add redis shadow && \
|
|||||||
# Start redis
|
# Start redis
|
||||||
STOPSIGNAL SIGKILL
|
STOPSIGNAL SIGKILL
|
||||||
USER redis:redis
|
USER redis:redis
|
||||||
CMD redis-server /etc/redis.conf
|
CMD ["redis-server", "/etc/redis.conf"]
|
||||||
|
Reference in New Issue
Block a user