Skip to content

Commit 3ee1661

Browse files
authored
Provide Windows single command sample into readme
1 parent 33a1a1b commit 3ee1661

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,18 @@ docker-compose up
2727
```
2828
Note: *You must be on the same directory as your docker-compose.yml file*
2929

30-
**Single Line Command Execution:**
30+
**Single Line Command Execution**
3131

32+
Linux / macOS:
3233
```
3334
curl -L https://raw.githubusercontent.com/SMATechnologies/opcon-docker/1.0.2/docker-compose.yml --output docker-compose.yml && SQL_ADMIN_PASSWORD=MssqlP@ssWord42 DB_PASSWORD=OpconP@ssWord42 VOLUME_PATH=/tmp/opcon docker-compose up
3435
```
3536

37+
Windows:
38+
```
39+
curl -L https://raw.githubusercontent.com/SMATechnologies/opcon-docker/1.0.2/docker-compose.yml --output docker-compose.yml; $env:SQL_ADMIN_PASSWORD="MssqlP@ssWord42"; $env:DB_PASSWORD="OpconP@ssWord42"; $env:VOLUME_PATH="C:\OpCon\"; docker-compose up
40+
```
41+
3642
## Environment Variables
3743

3844
### Mandatory

0 commit comments

Comments
 (0)