Compare commits
2 commits
7859110d97
...
52c8516a1e
Author | SHA1 | Date | |
---|---|---|---|
|
52c8516a1e | ||
|
3a7803ef2b |
3 changed files with 7 additions and 1 deletions
4
restart.sh
Normal file
4
restart.sh
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
#!/bin/bash
|
||||||
|
docker stop haifareminder
|
||||||
|
docker rm haifareminder
|
||||||
|
docker run -p 3000:3000 -d --name haifareminder docker.io/kfda89/haifareminder
|
|
@ -63,5 +63,5 @@ webServer.listen(process.env.PORT, () => {
|
||||||
})
|
})
|
||||||
|
|
||||||
webServer.use(function (req, res, next) {
|
webServer.use(function (req, res, next) {
|
||||||
res.status(404).send("Sorry can't find that!")
|
res.status(404).send("This is not the page you are looking for...")
|
||||||
})
|
})
|
2
start.sh
Normal file
2
start.sh
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/bash
|
||||||
|
docker run -p 3000:3000 -d --name haifareminder docker.io/kfda89/haifareminder
|
Loading…
Reference in a new issue