mirror of
https://github.com/mainflux/mainflux.git
synced 2025-04-29 13:49:28 +08:00
12 lines
229 B
Bash
Executable File
12 lines
229 B
Bash
Executable File
#!/bin/bash
|
|
|
|
###
|
|
# Stops services on the local system prior to sunning containers
|
|
# in order to liberate binding ports
|
|
###
|
|
|
|
sudo service mongodb stop
|
|
sudo service influxdb stop
|
|
sudo service mosquitto stop
|
|
sudo service nginx stop
|