Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 402 Bytes

File metadata and controls

16 lines (14 loc) · 402 Bytes

docker-compose inline configuration

Rather than a config.json file, you can pass the configuration inline from your docker-compose.yml file like this:

  environment:
    PUBLIC_BASE_URL: https://your-proxy-url.com
    IMMICH_URL: http://your-internal-immich-server:2283
    CONFIG: |
      {
        "ipp": {
          "singleImageGallery": false,
          ...
        }
      }