expose additional ports in Docker to help debugging

This commit is contained in:
Xavier Léauté 2015-02-18 16:46:06 -08:00
parent 53d2b961c5
commit 6b391e4055
1 changed files with 4 additions and 0 deletions

View File

@ -58,12 +58,16 @@ RUN apt-get clean && rm -rf /tmp/* /var/tmp/*
# - 8081: HTTP (coordinator) # - 8081: HTTP (coordinator)
# - 8082: HTTP (broker) # - 8082: HTTP (broker)
# - 8083: HTTP (historical) # - 8083: HTTP (historical)
# - 8090: HTTP (overlord)
# - 8091: HTTP (middlemanager)
# - 3306: MySQL # - 3306: MySQL
# - 2181 2888 3888: ZooKeeper # - 2181 2888 3888: ZooKeeper
# - 8100 8101 8102 8103 8104 : peon ports # - 8100 8101 8102 8103 8104 : peon ports
EXPOSE 8081 EXPOSE 8081
EXPOSE 8082 EXPOSE 8082
EXPOSE 8083 EXPOSE 8083
EXPOSE 8090
EXPOSE 8091
EXPOSE 3306 EXPOSE 3306
EXPOSE 2181 2888 3888 EXPOSE 2181 2888 3888
EXPOSE 8100 8101 8102 8103 8104 EXPOSE 8100 8101 8102 8103 8104