mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-04-26 16:05:58 +03:00
[GH-ISSUE #337] Problem updating docker image installation #217
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#217
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 @lord-kyron on GitHub (Jun 29, 2020).
Original GitHub issue: https://github.com/retspen/webvirtcloud/issues/337
@catborise @Real-Gecko - since several last releases, I found out that the
.gitfolder is missing when I make a docker installation.I am unable to update existing docker installation, so to implement every new feature I must re-compile and re-create the whole docker image again.
Can you please check when is wrong and missing and fix that?
Thanks!
@catborise commented on GitHub (Jun 29, 2020):
.git folder is not needed to update container...
check with "git status" if there is a file which was edited. if it is, it gives error to update.
you can build a new one. copy old db.sqlite3 file, it will work.
@lord-kyron commented on GitHub (Jun 30, 2020):
I am using fresh install without modifications and I am getting this when I activate the venv and try to execute git command (no matter if git pull or git status):
@catborise commented on GitHub (Jun 30, 2020):
@lord-kyron if you want to add existing .git directories
before build you can remove ".dockerignore"
docker ignore file prevents to copy some files to container.
@lord-kyron commented on GitHub (Jun 30, 2020):
Yes, I was thinking of this. Ok will try and give you feedback.