-
Hi, I am new to this app and to docker, so I'm not sure if this is a problem with the app, with docker, or with me. I love what I have seen of this application and it is a perfect fit for my needs. syndicoon |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Ok, did even more digging (on various docker related sites) and found out the command that will do what I want. sudo docker run -d -p 7000:80 -v /mnt/mealie-db:/app/data:rw --name=mealiedb hkotel/mealie:latest -d = detach (run in background) The result: I hope this helps someone. |
Beta Was this translation helpful? Give feedback.
Ok, did even more digging (on various docker related sites) and found out the command that will do what I want.
sudo docker run -d -p 7000:80 -v /mnt/mealie-db:/app/data:rw --name=mealiedb hkotel/mealie:latest
-d = detach (run in background)
-v /mnt/mealie-db:/app/data:rw = Mount the physical location /mnt/mealie-db to docker location /app/data and give it read write access
--name=mealiedb = name the docker process mealiedb
hkotel/mealie:latest = Pull the latest version of hkotel/mealie docker image
The result:
The database will be physically located on /mn/mealie-db
username: changeme@email.com
password: MyPassword
I hope this helps someone.