Skip to content

Instantly share code, notes, and snippets.

@tzoght
Last active October 18, 2018 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tzoght/281052e24d463eb182b5534ba4dd55e8 to your computer and use it in GitHub Desktop.
Save tzoght/281052e24d463eb182b5534ba4dd55e8 to your computer and use it in GitHub Desktop.
A yml file for docker-compose for solace-pubsub-standard broker version. Run "docker-compose -f singleNode.yml up
# docker-compose -f singleNode.yml up
# wget https://gist.githubusercontent.com/tzoght/281052e24d463eb182b5534ba4dd55e8/raw/7a361ae18c378bdf8a821d16b0990268e35f54a5/singleNode.yml && docker-compose -f singleNode.yml up
version: '3.3'
#x-environment:
# &default-environment
# username_admin_globalaccesslevel: admin
# username_admin_password: admin
# system_scaling_maxconnectioncount: 100
networks:
hanet: {}
services:
primary:
container_name: pubSubStandardSingleNode
image: solace/solace-pubsub-standard:latest
shm_size: 1g
ulimits:
core: 1
nofile:
soft: 2448
hard: 38048
restart: always
ports:
- '80:80'
- '443:443'
- '943:943'
- '1883:1883'
- '5671:5671'
- '5672:5672'
- '8000:8000'
- '8080:8080'
- '8443:8443'
- '8883:8883'
- '9000:9000'
- '9443:9443'
- '55555:55555'
- '55003:55003'
- '55443:55443'
- '1936:1936'
networks:
- hanet
environment:
- username_admin_globalaccesslevel=admin
- username_admin_password=admin
- system_scaling_maxconnectioncount=100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment