compose settings: ```json services: museum: image: ghcr.io/ente-io/server ports: - 8080:8080 # API depends_on: postgres: condition: service_healthy volumes: - ./museum.yaml:/museum.yaml:ro - ./data:/data:ro # Resolve "localhost:3200" in the museum container to the minio container. socat: image: alpine/socat network_mode: service:museum depends_on: [museum] command: "TCP-LISTEN:3200,fork,reuseaddr TCP:minio:3200" web: image: ghcr.io/ente-io/web # Uncomment what you need to tweak. ports: - 3000:3000 # Photos web app - 3001:3001 # Accounts - 3002:3002 # Public albums - 3003:3003 # Auth - 3004:3004 # Cast # Modify these values to your custom subdomains, if using any environment: ENTE_API_ORIGIN: https://ente.[].net ENTE_ALBUMS_ORIGIN: https://album.[].net ```