Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 760 Bytes

docker-compose.markdown

File metadata and controls

24 lines (20 loc) · 760 Bytes

Docker Compose

version: '3'
services:
  moviematch:
   image: lukechannings/moviematch:latest
   container_name: moviematch
   environment:
    PLEX_URL: "<Plex URL>"
    PLEX_TOKEN: "<Plex Token>"
   ports:
      - 8000:8000

If your Plex server is hosted at https://plex.example.com, and your token was abc123 for example, your environment would look like this:

environment:
  PLEX_URL: "https://plex.example.com"
  PLEX_TOKEN: "abc123"

If you want to use an env file instead of passing variables via environment, you can use that with docker-compose using the env_file option.