mirror of
https://github.com/velocitatem/PHANTOM.git
synced 2026-05-31 08:33:36 +00:00
Add EXPOSE directives to all Dockerfiles with port documentation
Co-authored-by: velocitatem <60182044+velocitatem@users.noreply.github.com>
This commit is contained in:
@@ -1,4 +1,7 @@
|
|||||||
FROM confluentinc/cp-kafka:7.5.0
|
FROM confluentinc/cp-kafka:7.5.0
|
||||||
|
|
||||||
# Kafka is used as-is from the Confluent official image
|
# Expose Kafka ports
|
||||||
# No additional configuration needed
|
# 9092: External client connections
|
||||||
|
# 29092: Internal broker communication
|
||||||
|
# 9999: JMX monitoring port
|
||||||
|
EXPOSE 9092 29092 9999
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
FROM redis:7-alpine
|
FROM redis:7-alpine
|
||||||
|
|
||||||
# Redis is used as-is from the official image
|
# Expose Redis port
|
||||||
# No additional configuration needed
|
EXPOSE 6379
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
FROM docker.redpanda.com/redpandadata/console:latest
|
FROM docker.redpanda.com/redpandadata/console:latest
|
||||||
|
|
||||||
# Redpanda Console is used as-is from the official image
|
# Expose Redpanda Console web UI port
|
||||||
# No additional configuration needed
|
EXPOSE 8080
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
FROM confluentinc/cp-zookeeper:latest
|
FROM confluentinc/cp-zookeeper:latest
|
||||||
|
|
||||||
# Zookeeper is used as-is from the Confluent official image
|
# Expose Zookeeper client port
|
||||||
# No additional configuration needed
|
EXPOSE 2181
|
||||||
|
|||||||
Reference in New Issue
Block a user