Docker & Themes

Post Reply
darknet123
Jr. Bludit
Posts: 1
Joined: Sat May 09, 2020 6:38 am

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.
User avatar
diego
Site Admin
Posts: 773
Joined: Sat May 16, 2015 2:53 pm
Been thanked: 1 time
Contact:

Hi,
probably some error with permissions.

Can you check the logs in the docker ?

Code: Select all

docker logs bludit
Post Reply