mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-04-26 16:05:58 +03:00
[GH-ISSUE #278] Docker Reset after restart #179
Labels
No labels
bug
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/webvirtcloud#179
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @FrancescoFdd5 on GitHub (Jan 7, 2020).
Original GitHub issue: https://github.com/retspen/webvirtcloud/issues/278
Hi, when I stop and then restart the container I lose all the data and the container returns to the default settings
I use this command to start it
docker run -d -p 10080:80 -p 6080:6080 --restart unless-stopped retspen/webvirtcloud:0.1@FrancescoFdd5 commented on GitHub (Jan 7, 2020):
I solved, after starting the container for the first time, then you need to use another command:
docker start "docker container id"Because if you use the one shown in the wiki, a new container is recreated.
I believe it is necessary to update the wiki
To find the container id just give this command:
docker ps -aor
docker container lsI hope this will help others