Files
docker-getting-started/app/docker.notes
MakerOMagic 22d5e6ddaf todo app
2022-12-11 19:30:42 -05:00

15 lines
300 B
Plaintext

#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