Posts by jaytee1414

    You may have fundamental misunderstandings of various key concepts, including but not limited to users, groups, filesystem permissions and ownerships, and docker basic principles. This can be aggravated by viewing online videos and howtos, and parroting what you find there into your system without really understanding what it is you are actually doing. Most if not all of those videos and howtos are making silent assumptions that these basic concepts are already part of your experience base. Are they?


    We're here to help, but to get the best start we need how much of what you are going to need to know you already know.

    I do know my knowledge is limited and I'm learning as I go and the fact that I follow the videos but it's not going as smooth as their videos complicates me...


    My docker related items are installed on my external direct of my RPi4 with the directory of -> /srv/dev-disk-by-label-Data/appdata which is the share folder specific for my docker. This share folder on OMV gui is set to the permission of everyone have read/write access


    Going through the folder on my mac shows portainer_data folder under volumes and also docker containers / images under the folder. (not changing anything just looking around. But to look around it it required me to change the folder permission to 777 (i know 777 is not secure at all so I changed to 755), which makes my first problem because it seems to also cause the web gui access of portainer to not work and I assume that OMV should provide enough permission at an automatic level that allows basic stuff such as portainer to work?


    This leads to the problem of when I install other dockers such as Letsencrypt, it seems to not be able to read it's own files or internally communicated with itself without modifying the folder permission to 755. I gave a pgid=100, which is the user group access for the docker, which I assume is enough and should not require root level access?


    My question is why when portainer pulls a new image and creating the docker's own files (/config) would change the permission. I know that some "software" would lock or hide files hoping users to not be able to alter and corrupt the "software". But my case is causing my docker to not be able to work even at fresh install like my Mariadb that I'm still working on..

    I think my problem is more fundamentally wrong? This docker file is the actual install of dockers when you press install on OMV gui in the OMV extra -> Docker page. The problem i am having is the files denies permissions causing problem like if I don't manually change it's permission, after restarting, even portainer web gui cannot be accessed. When new dockers are installed, various files in their config behave similarly like letsencrypt which you need to change config files to make it work and again require chmod -R 755 or just to make it work. I'm not sure what is wrong there. I give PUID 1000 and PGID 100 to the container deploy but doesnt seem to help the situation.

    My fresh install of Mariadb stuck with the following logs during startup

    Anyone have the same problem? I deleted and reinstalled the docker with removing the image and everything still spit the same code....


    Other places say is corrupted database but no matter how i reinstall i still get the same output


    Setup:

    RPi 4 OMV5.5.8-1

    Portainer 19.03.12

    I reinstalled omv 5 started all over again but still end up the same situation

    mariadb, letsencrypt, nextcloud and duckdns in the same bridge, port forwarding done... anything else i should try?

    Hi is anyone still viewing this post.... I reinstalled omv but the problem still occurs... I installed docker via omv extras but the docker dir become inaccessible, which my account that i connect with has highest priority while all permission is basically allowed on this appdata share... someone tell me what is the problem?


    ">


    This makes portainer inaccessible via web gui as well because after installing portainer its blocked by the permission, so stuff just won't load


    Code
    #I tried give the dir permission via ssh with
    sudo chmod 777 docker
    #still don't work

    I've never had an issue with Docker messing with the permissions, usually just a case on ensuring when you are setting up the container you are providing it with an PGID and PUID to use that has appropriate permissions on the folders it is allowed to access.


    If the contaner makes files or folders, then that way they are created with the appropriate permissions.


    I usually make a user called docker, add it to a group called docker, but also add it to the users group so that any files created by the docker user are accessible via any user in the users group and vice versa

    Code
          - PUID=1000
          - PGID=100

    This is the PUID and PGID that I set when I installed the dockers that I want. I am not sure what the problem is but I have deleted all docker related files and trying to restart once again and see what settings might have messed up such as portainer install. I'll see the docker user and group thing but not sure if i know what I'm doing iwth user group.. Should I give all permission for the docker user?

    Hi, I have been encountering a problem with my share folder permission after installing new docker. I had problems with using Nextcloud and Let's encrypt previously so I decided to delete everything on my docker share and start over and now its messing up with the permission. I have to go and do reset permission on the folder even when it it set to everyone allowed. It seems the reset perm is also struggling? where it takes very long time but normally it is very fast..


    the folder have permission of the following when check with ls -l

    Code
    drwxrwsrwx   3 root users  4096

    Is there a way to install docker without messing up the permissions?


    System:

    Raspberry Pi 4 OMV 5-5-5.1

    Portainer 19.03.12


    Any info can be requested to help

    I added duckdns to the bridge network, but it didn't work, spellings of containers seems to be fine.


    This is my config.php for nextcloud i added a few lines according to nextcloud.subdomain.conf thing but not sure if would help or harm. (original and edited still doesnt lead to it working tho...:

    Anything i can try? like time zone or anything.... just feel like letsencrypt is the thing blocking the external communication to the nextcloud thing, ports are forwarded

    Hi everyone, I have followed @TechnoDadLife's youtube video on installing Nextcloud, Let's encrypt and mariadb with via docker, which didn't go like his video (https://www.youtube.com/watch?v=4HPXGKfFibc) My problem is constantly reaching this Screenshot-2020-08-14-at-1-02-17-AM.png">


    I tried to connect to the local ip with 192.168.1.XX:443 or 192.168.1.XX:82 but have no success just to get to the setup page of Nextcloud and nextcloud.mysubdomain.duckdns.org will bring me to the same page. So I would like to see if anyone have the same issue and had a solution to this problem.


    My configuration is OMV 5.5.5-1 on raspberry pi 4 4gb.


    My nextcloud.subdomain.conf file is set as the following:

    If you like anymore information that can help, please state it in a comment and I'll post it. Thanks in advance


    Update: I am able to get to the configure page by adding a port for NextCloud 444:443 in Portainer. Seems like the problem is Letsencrypt not connecting towards Nextcloud and I hope someone can help me figure it out