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

bash instead of sh #354

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ See the news [here](https://laravel-news.com/unified-transform-open-source-schoo
- To run Feature and Unit Tests run following commands:

```sh
$ docker exec -it app sh
$ docker exec -it app bash
// Inside container shell
:/# php artisan test
```
Expand Down Expand Up @@ -95,7 +95,7 @@ With the improved Docker setup, you will get:
2. Create **purify** folder in `storage/app/` directory.
3. Run `cp .env.example .env`.
4. Run `docker-compose up -d`.
5. Run `docker exec -it db sh`. Inside the shell, run:
5. Run `docker exec -it db bash`. Inside the shell, run:

```sh
:/# mysql -u root -p
Expand All @@ -110,7 +110,7 @@ With the improved Docker setup, you will get:
mysql> EXIT;
```
6. Finally, exit the container by running `exit` in the container shell.
7. Run `docker exec -it app sh`. Inside the shell, run following commands:
7. Run `docker exec -it app bash`. Inside the shell, run following commands:

```sh
:/# composer install
Expand Down