Skip to content

Commit

Permalink
Fixed some issues with hard coded values for my old computer. (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
PureMunky authored Nov 29, 2020
1 parent 6ad98b9 commit 66b906e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 83 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
bin/
db/
obj/
out/
coverage/
Expand Down
83 changes: 2 additions & 81 deletions Tete.Web/ClientApp/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Tete.Web/ClientApp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@
"ts-node": "~5.0.1",
"tslint": "~6.1.0"
}
}
}
3 changes: 2 additions & 1 deletion run-db.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ docker rm tete-db
# docker build -f Db.Dockerfile -t tete-db-img .

# run docker image
docker run -dit --name tete-db -p 1433:1433 -v E:\\Projects\\Tete\\Database:/var/opt/mssql -e ACCEPT_EULA=Y -e MSSQL_PID=Express -e SA_PASSWORD=$teteDBPassword mcr.microsoft.com/mssql/server:2017-CU8-ubuntu
#cmd //c "docker run -dit --name tete-db -p 1433:1433 -v ${PWD}/DB:/var/opt/mssql -e ACCEPT_EULA=Y -e MSSQL_PID=Express -e SA_PASSWORD=$teteDBPassword mcr.microsoft.com/mssql/server:2017-CU8-ubuntu"
docker run -dit --name tete-db -p 1433:1433 -e ACCEPT_EULA=Y -e MSSQL_PID=Express -e SA_PASSWORD=$teteDBPassword mcr.microsoft.com/mssql/server:2017-CU8-ubuntu

# create database migration
# cd Tete.Web && dotnet-ef migrations add build
Expand Down

0 comments on commit 66b906e

Please sign in to comment.