Docker Compose
This is the recommended starter layout for GuideVault.
Basic Compose file
Section titled “Basic Compose file”services: guidevault: image: ghcr.io/shredder5262/guidevault:latest container_name: guidevault restart: unless-stopped ports: - "5478:5478" volumes: - ./config:/config - ./data:/data - ./library:/librarySecond test instance
Section titled “Second test instance”GuideVault currently listens inside the container on 5478. To run a second instance, keep the container-side port at 5478 and change only the host-side port.
ports: - "5479:5478"Open the second instance at:
http://localhost:5479