mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-04-25 23:45:56 +03:00
[GH-ISSUE #432] docker errot #263
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#263
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 @tree1123 on GitHub (Apr 25, 2021).
Original GitHub issue: https://github.com/retspen/webvirtcloud/issues/432
when setup use docker in centos8.2
i follow this
https://github.com/retspen/webvirtcloud/wiki/Docker-Installation-&-Update
STEP 10 error
STEP 10: RUN python3 -m venv venv && . venv/bin/activate && pip3 install -U pip && pip3 install wheel && pip3 install -r conf/requirements.txt && chown -R www-data:www-data /srv/webvirtcloud
/bin/sh: 1: pip3: not found
Error: error building at STEP "RUN python3 -m venv venv && . venv/bin/activate && pip3 install -U pip && pip3 install wheel && pip3 install -r conf/requirements.txt && chown -R www-data:www-data /srv/webvirtcloud": error while running runtime: exit status 127
and i try it every step
when enter chown -R www-data:www-data /srv/webvirtcloud
chown: 无效的用户: “www-data:www-data”
@catborise commented on GitHub (Apr 25, 2021):
there is not any problem with that dockerfile.
i try it now on oel 8.3(same with centos 8) without any problem it works as expected with podman(clone of docker)
manuel install also works for now(fixed)
@ssbaksa commented on GitHub (Apr 26, 2021):
If I may add something to this.
We have talked abut this upgrade stuff (Problem with update while using Docker #380) and I have decided against upgrade. I am building new docker and just scp database from old image to my backup storage and back into new one. It is simple and it works and as catborise said, it is more on container way of doing things. I just keep some old images for security sake (if I mess something badly).
I hope that this helps.
@catborise commented on GitHub (Apr 26, 2021):
@ssbaksa there is a more convenient way of creating new container without copying dbfile.
“Docker volumes” it can keep dbfile. whenever you create a new docker you can mount it.
browse: https://docs.docker.com/storage/volumes/
@ssbaksa commented on GitHub (Apr 26, 2021):
Oh, I know that. We have been talked about it but I was to lazy to
implement it, but thanks for reminder.
On Mon, 26 Apr 2021, 11:40 catborise, @.***> wrote: