diff --git a/app/No b/app/No new file mode 100644 index 0000000..e69de29 diff --git a/app/cut b/app/cut new file mode 100644 index 0000000..e69de29 diff --git a/app/docker b/app/docker new file mode 100644 index 0000000..e69de29 diff --git a/app/docker.notes b/app/docker.notes new file mode 100644 index 0000000..3885e24 --- /dev/null +++ b/app/docker.notes @@ -0,0 +1,15 @@ +#build commands +docker build -t getting-started . + +#run commands +docker run -dp 3000:3000 getting-started + + +#add named data file +docker volume create todo-db + +#make image with shared storage +docker run -dp 3000:3000 -v todo-db:/etc/todos getting-started + +#to fine file locations +docker volume inspect \ No newline at end of file diff --git a/app/src/static/js/app.js b/app/src/static/js/app.js index 4ec962c..1fb76fd 100644 --- a/app/src/static/js/app.js +++ b/app/src/static/js/app.js @@ -53,7 +53,7 @@ function TodoListCard() { {items.length === 0 && ( -

No items yet! Add one above!

+

You have no todo items yet! Add one above!

)} {items.map(item => (