Page 1 of 1

Docker & Themes

Posted: Sat May 09, 2020 6:42 am
by darknet123
Apologies if this is a very noob question. I am very new to docker.
I installed bludit via docker.

Code: Select all

docker run --name bludit \
    -p 8000:80 \
    -v /home/user/bludit:/usr/share/nginx/html/bl-content \
    -d bludit/docker:lates
Now, /home/user/bludit is mapped to bl-content and hence the theme directories are above this directory and hence I am not able to modify or install any new theme.

If I change

Code: Select all

    -v /home/user/bludit:/usr/share/nginx/html/bl-content \
to

Code: Select all

    -v /home/user/bludit:/usr/share/nginx/html/ \
the docker does not run properly and displays no page.

Now this being the case, how do I manipulate themes? Please advice.

Re: Docker & Themes

Posted: Sat May 09, 2020 1:13 pm
by diego
Hi,
probably some error with permissions.

Can you check the logs in the docker ?

Code: Select all

docker logs bludit