- Andrej Sakal: Sakal-Dev
- Felix Hofmann: Hofmann-Dev
{
"event":{
"id":1,
"date":"2017-12-20T10:26:30.520Z",
"registrationStart":"2017-12-20T10:26:30.521Z",
"registrationEnd":"2017-12-20T10:26:30.521Z",
"isLocked":false
},
"company":{
"name":"Firma",
"branch":"Branch",
"address":{
"city":"Pasching",
"zipCode":"4061",
"street":"Dr. Karl Rennerstrasse, 17a",
"streetNumber":"17a",
"addition":"zusatz"
},
"contact":{
"firstName":"Simon",
"lastName":"Kepplinger",
"email":"simon.kepplinger@gmail.com",
"phoneNumber":"6605791261"
},
"phoneNumber":"6605791261",
"email":"andi.sakal15@gmail.com",
"homepage":"web.com",
"logoUrl":"hallo Andi \\(◠‿◠)",
"establishmentsCountInt":1,
"establishmentsInt":"London",
"establishmentsCountAut":2,
"establishmentsAut":"Linz;Wien"
},
"location":{
"number":0,
"area":{
"id":1,
"designation":"",
"graphicUrl":"",
"eventId":1
},
"category":"A",
"xCoordinate":100,
"yCoordinate":100
},
"presentation":null,
"fitPackage":{
"id":1,
"name":"",
"price":200,
"discriminator":1
},
"representatives":[
{
"name":"Simon Kepplinger",
"email":"simon.kepplinger@gmail.com",
"imageUrl":"../../../../../assets/contact.png"
},
{
"name":"Simon Kepplinger2",
"email":"simon.kepplinger@gmail.com2",
"imageUrl":"../../../../../assets/contact.png"
}
],
"branches":[
{
"name":"Elektronik/techn. Informatik",
"id":2,
"timestamp":"AAAAAAAAB+A="
}
],
"resources":[
{
"name":"Stehtisch",
"description":"Ein Stehtisch",
"id":2,
"timestamp":"AAAAAAAAB9g="
},
{
"name":"Wlan",
"description":"Es wird Ihnen ein Wlan Modul zur Verfügung gestellt",
"id":1,
"timestamp":"AAAAAAAAB9c="
}
],
"isAccepted":false,
"remarks":"dfkjasöldf",
"additionalInfo":"sadf",
"companyDescription":"Tätigkeitsfeldes",
"providesSummerJob":true,
"providesThesis":false
}
- Download & Install Docker from Official Page
- Set up 4GB RAM for Docker important!!
- Check with "docker --version"
- Pull Image with "docker pull microsoft/mssql-server-linux"
- To run the container image with Docker, you can use the following command
docker run -e 'ACCEPT_EULA=Y' -e 'MSSQL_SA_PASSWORD=MyComplexPassword!234' -p 1433:1433 -d microsoft/mssql-server-linux
docker run -e "ACCEPT_EULA=Y" -e "MSSQL_SA_PASSWORD=MyComplexPassword!234" -p 1433:1433 -d microsoft/mssql-server-linux
- Check logs of the run with "docker logs + first 3 numbers of hash""
- If finished connect to Database with
localhost:1433
Database: Backend
User: sa
Password: MyComplexPassword!234