ngosang / docker-amule

aMule is a multi-platform client for the ED2K file sharing network
MIT License
119 stars 13 forks source link

Problem adding new theme #20

Closed acetaku closed 2 years ago

acetaku commented 2 years ago

Hi, ngosang. I tried to use an other webserver theme adding it in $HOME/.aMule/webserver/[skin name]/ as explained in https://wiki.amule.org/wiki/AMuleWeb#Template_.28skin.29_location, but when I change the amule.conf with the theme folder's name, the default theme is shown.

ngosang commented 2 years ago

It should be possible.

  1. Edit the docker-compose.yml to mount the "external theme folder"
    volumes:
       - "/your_host/theme_path:/usr/share/amule/webserver/your_theme"
  2. Edit the amule.conf file to set the theme your_theme
  3. Restart amule container

Make sure the theme and the amule.conf are mounted in an external volume. If not, the changes will be lost when you restart the container.

acetaku commented 2 years ago

Thank you for the solution!