Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure the broker service name doesn't change #168

Merged
merged 1 commit into from
Nov 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ configs:
options:
socket: /tmp/docker.sock
broker:
url: mqtt://teamBroker:1883
url: mqtt://broker:1883
public_url: ws${TLS_ENABLED:+s}://mqtt.${DOMAIN:?error}
teamBroker:
enabled: true
Expand Down Expand Up @@ -71,7 +71,7 @@ configs:
# ssl_protocols TLSv1.2;
# ssl_certificate /etc/nginx/certs/${DOMAIN}.crt;
# ssl_certificate_key /etc/nginx/certs/${DOMAIN}.key;
# proxy_pass teamBroker:1883;
# proxy_pass broker:1883;
# }
#}
postgres_db_setup:
Expand Down Expand Up @@ -436,7 +436,7 @@ services:
target: /docker-entrypoint-initdb.d/02-setup-context-db.sh
volumes:
- db:/var/lib/postgresql/data
teamBroker:
broker:
image: emqx/emqx:5.8.0
networks:
- flowforge
Expand Down Expand Up @@ -476,7 +476,7 @@ services:
depends_on:
- "postgres"
- "nginx"
- "teamBroker"
- "broker"

file-server:
image: "flowfuse/file-server:2.10.0"
Expand Down