Skip to main content

docker-compose

services:
  heimdall:
    image: lscr.io/linuxserver/heimdall:latest
    container_name: heimdall
    environment:
      - PUID=1000 #change to your own userID
      - PGID=1000 #change to your own groupID
      - TZ=America/Santo_Domingo #change to your own time zone
    volumes:
      - ./config:/config
    ports:
      - 890:80 #I use 890 for http, but you can change the left side port number to any other
      - 891:443 #I use 891 for https, but you can change the left side port number to any other
    restart: unless-stopped