Skip to content

Commit

Permalink
removed docker sync commands du to bug
Browse files Browse the repository at this point in the history
  • Loading branch information
aliuosio committed Dec 15, 2019
1 parent 7e996e9 commit 9ce0938
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 18 deletions.
7 changes: 1 addition & 6 deletions README.md
Expand Up @@ -29,13 +29,8 @@ This Setup installs the basic docker containers

> on OSX add the keys in `.docker/nginx/ssl` to your keychain to use https in browser
## next startup after reboot of Host

Linux:

docker-compose up -d

OSX:
docker-sync start;
docker-compose -f docker-compose.osx.yml up -d;

## PHP Container Usage

Expand Down
24 changes: 12 additions & 12 deletions install.sh
Expand Up @@ -24,19 +24,19 @@ dockerRefresh() {
echo "docker-compose build";
docker-compose build

if [[ $(uname -s) == "Darwin" ]]; then
echo "gem install docker-sync";
gem install docker-sync;

echo "docker-sync start;";
docker-sync start;

echo "docker-compose -f docker-compose.osx.yml up -d";
docker-compose -f docker-compose.osx.yml up -d;
else
# if [[ $(uname -s) == "Darwin" ]]; then
# echo "gem install docker-sync";
# gem install docker-sync;
#
# echo "docker-sync start;";
# docker-sync start;
#
# echo "docker-compose -f docker-compose.osx.yml up -d";
# docker-compose -f docker-compose.osx.yml up -d;
# else
echo "docker-compose up -d;";
docker-compose up -d;
fi;
# docker-compose up -d;
# fi;
}

composerPackages() {
Expand Down

1 comment on commit 9ce0938

@rakibabu
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The bug can be resolved with this: #14

Please sign in to comment.