Ligase icon indicating copy to clipboard operation
Ligase copied to clipboard

docker-compose.yaml doesn't expose ports

Open pl0pix opened this issue 4 years ago • 0 comments

Bug Report

1. Minimal reproduce step (Required)

$ git pull origin
$ git checkout stable
$ docker-compose up -d
Creating network "ligase_default" with the default driver
Creating ligase_redis_1     ... done
Creating ligase_zookeeper_1 ... done
Creating ligase_nats_1      ... done
Creating ligase_pg-master_1 ... done
Creating ligase_kafka_1     ... done

$ docker-compose ps
       Name                     Command               State                              Ports
--------------------------------------------------------------------------------------------------------------------------
ligase_kafka_1       start-kafka.sh                   Up      0.0.0.0:9092->9092/tcp,:::9092->9092/tcp
ligase_nats_1        /gnatsd -c /gnatsd.conf          Up      0.0.0.0:4222->4222/tcp,:::4222->4222/tcp, 6222/tcp, 8222/tcp
ligase_pg-master_1   docker-entrypoint.sh postgres    Up      0.0.0.0:5432->5432/tcp,:::5432->5432/tcp
ligase_redis_1       docker-entrypoint.sh redis ...   Up      0.0.0.0:6379->6379/tcp,:::6379->6379/tcp
ligase_zookeeper_1   /docker-entrypoint.sh zkSe ...   Up      2181/tcp, 2888/tcp, 3888/tcp, 8080/tcp

2. What did you expect to see? (Required)

I expect to see these ports to be exposed:

grep -i ^expose Dockerfile
EXPOSE 8008 8448 7000 18008 18448

3. What did you see instead (Required)

See. docker-compose ps output in 1.

4. Affected version (Required)

I tested 4.8.27. and 4.8.28.

5. Root Cause Analysis

pl0pix avatar May 25 '21 15:05 pl0pix