initial commit

This commit is contained in:
2022-05-24 16:45:28 -05:00
commit f0578f858b
17 changed files with 287 additions and 0 deletions

6
start.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
app="webcal-dashboard"
docker build -t ${app} .
docker run -d -p 56733:80 \
--name=${app} \
-v $PWD:/app ${app}