Add "Unix/Windows" support for shell command

This commit is contained in:
Ariel Safari 2020-08-01 22:34:45 +03:00 committed by GitHub
parent 0aef9f63ef
commit b072d99385
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,8 +51,9 @@ And now, we'll start migrating a service at a time into the compose file.
To remember, this was the command we were using to define our app container. To remember, this was the command we were using to define our app container.
```bash === "Unix"
docker run -dp 3000:3000 \ ```bash
docker run -dp 3000:3000 \
-w /app -v "$(pwd):/app" \ -w /app -v "$(pwd):/app" \
--network todo-app \ --network todo-app \
-e MYSQL_HOST=mysql \ -e MYSQL_HOST=mysql \
@ -61,12 +62,12 @@ docker run -dp 3000:3000 \
-e MYSQL_DB=todos \ -e MYSQL_DB=todos \
node:12-alpine \ node:12-alpine \
sh -c "yarn install && yarn run dev" sh -c "yarn install && yarn run dev"
``` ```
If you are using PowerShell then use this command. === "Windows"
```powershell ```powershell
docker run -dp 3000:3000 ` docker run -dp 3000:3000 `
-w /app -v "$(pwd):/app" ` -w /app -v "$(pwd):/app" `
--network todo-app ` --network todo-app `
-e MYSQL_HOST=mysql ` -e MYSQL_HOST=mysql `
@ -75,7 +76,7 @@ docker run -dp 3000:3000 `
-e MYSQL_DB=todos ` -e MYSQL_DB=todos `
node:12-alpine ` node:12-alpine `
sh -c "yarn install && yarn run dev" sh -c "yarn install && yarn run dev"
``` ```
1. First, let's define the service entry and the image for the container. We can pick any name for the service. 1. First, let's define the service entry and the image for the container. We can pick any name for the service.
The name will automatically become a network alias, which will be useful when defining our MySQL service. The name will automatically become a network alias, which will be useful when defining our MySQL service.
@ -161,25 +162,27 @@ docker run -dp 3000:3000 `
Now, it's time to define the MySQL service. The command that we used for that container was the following: Now, it's time to define the MySQL service. The command that we used for that container was the following:
```bash === "Unix"
docker run -d \
```bash
docker run -d \
--network todo-app --network-alias mysql \ --network todo-app --network-alias mysql \
-v todo-mysql-data:/var/lib/mysql \ -v todo-mysql-data:/var/lib/mysql \
-e MYSQL_ROOT_PASSWORD=secret \ -e MYSQL_ROOT_PASSWORD=secret \
-e MYSQL_DATABASE=todos \ -e MYSQL_DATABASE=todos \
mysql:5.7 mysql:5.7
``` ```
If you are using PowerShell then use this command. === "Windows"
```powershell ```powershell
docker run -d ` docker run -d `
--network todo-app --network-alias mysql ` --network todo-app --network-alias mysql `
-v todo-mysql-data:/var/lib/mysql ` -v todo-mysql-data:/var/lib/mysql `
-e MYSQL_ROOT_PASSWORD=secret ` -e MYSQL_ROOT_PASSWORD=secret `
-e MYSQL_DATABASE=todos ` -e MYSQL_DATABASE=todos `
mysql:5.7 mysql:5.7
``` ```
1. We will first define the new service and name it `mysql` so it automatically gets the network alias. We'll 1. We will first define the new service and name it `mysql` so it automatically gets the network alias. We'll
go ahead and specify the image to use as well. go ahead and specify the image to use as well.