I trying to startup a neo4j container for test data and use a separate bolt port.
docker run --env=NEO4J_AUTH=none
--env=NEO4J_dbms_security_procedures_unrestricted=apoc.\\\*
--publish=7475:7474 --publish=7688:7687
--volume=$HOME/neo4j/conf-test:/conf
--volume=$HOME/neo4j/test-data:/data
--volume=$HOME/neo4j/plugins:/plugins
--name=neo4j-test neo4j
In $HOME/neo4j/conf-test/neo4j.conf file I have tried:
dbms.connector.bolt.listen_address=:7688 # doesn't do anything
dbms.connector.bolt=:7688 # error also error with =7688
dbms.connector.bolt.address=0.0.0.0:7688 # does nothing
When I open my browser to http://localhost:7475/browser/ it tries to connect to 7687

I use :server connect command to connect but it doesn't save the setting; though it connects fine. Everytime I refresh I have to enter them again.
Any thoughts?