25 lines
454 B
TOML
25 lines
454 B
TOML
user = "podman"
|
|
|
|
[service]
|
|
name = "immich_server"
|
|
image = "ghcr.io/immich-app/immich-server:release"
|
|
depend = ["immich_redis.service", "immich_postgres.service"]
|
|
|
|
[[network]]
|
|
name = "immich"
|
|
group = "caddy"
|
|
|
|
[[mounts]]
|
|
typ = "bind"
|
|
source = "/etc/localtime"
|
|
target = "/etc/localtime"
|
|
readonly = true
|
|
|
|
[[volumes]]
|
|
source = "/mnt/ssd/immich"
|
|
target = "/data"
|
|
|
|
[environment]
|
|
DB_USERNAME = "immich"
|
|
DB_PASSWORD = "EBYUcFlxwocGSL2"
|
|
DB_DATABASE_NAME = "immich" |