-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from zfox23/readme20230717
Updates to hubs-compose/README.md, mainly for Windows folks
- Loading branch information
Showing
2 changed files
with
43 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
#!/bin/bash | ||
basedir=$(dirname "$0")/.. | ||
|
||
prefix='\n\033[1;37m' | ||
suffix='\033[0m\n' | ||
echo -e ${prefix}Starting mutagen daemon...$suffix | ||
mutagen daemon start | ||
echo -e ${prefix}The mutagen daemon will stay running until you stop it manually with \`mutagen daemon stop\`.$suffix | ||
|
||
echo -e ${prefix}Running mutagen-compose...$suffix | ||
mutagen-compose -f "$basedir"/docker-compose.yml up --build --detach |