Jump to content

Path Html Css Docker Portainer


DjCanigia

Recommended Posts

DjCanigia

Hi guys, I installed emby on my openmediavault server with docker portainer, and I can't figure out where is the emby directory .. where can I find it to edit the css and html?

I also leave you the original container that I used

thank you
 

---
version: "2.1"
services:
  emby:
    image: lscr.io/linuxserver/emby:latest
    container_name: emby
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/London
    volumes:
      - /path/to/library:/config
      - /path/to/tvshows:/data/tvshows
      - /path/to/movies:/data/movies
      - /opt/vc/lib:/opt/vc/lib #optional
    ports:
      - 8096:8096
      - 8920:8920 #optional
    devices:
      - /dev/dri:/dev/dri #optional
      - /dev/vchiq:/dev/vchiq #optional
      - /dev/video10:/dev/video10 #optional
      - /dev/video11:/dev/video11 #optional
      - /dev/video12:/dev/video12 #optional
    restart: unless-stopped

 

Link to comment
Share on other sites

DjCanigia

sure, however, if I insert the css costum then how do I enable it in the html? does not work...

Link to comment
Share on other sites

visproduction

DJ,  

A few issues here.

1) The custom CSS will adjust all pages, except where there is some CSS that has higher priority.  The way around this, is to add !important

.someclass {
	border:1px solid #00FFFF !important;
}
	


2) Some pages that get cached may not show an immediate CSS style change.  Try a force refresh of the page.   That probably should fix it.  You could refresh the cache for the browser but I don't think you have to do that for CSS style udpates.

Hope that helps.

 

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...