mryakobo
mryakobo
IImmich
Created by mryakobo on 4/24/2023 in #help-desk-support
repopulate lost database
hm. I might have figured it out now. My /partition was running out of space, thus I changed /etc/docker/daemon.json to point to my /home instead; but apparently forgot to copy the data files. Silly mistake... sorry for the confusion!!!! Although on a more serious note, I from this second on hate docker volumes, they are too magic for me
6 replies
IImmich
Created by mryakobo on 4/24/2023 in #help-desk-support
repopulate lost database
output of docker volume inspect immich_pgdata
[
{
"CreatedAt": "2023-04-24T12:18:02+02:00",
"Driver": "local",
"Labels": {
"com.docker.compose.project": "immich",
"com.docker.compose.version": "2.17.2",
"com.docker.compose.volume": "pgdata"
},
"Mountpoint": "/home/jakob/docker-data-root/volumes/immich_pgdata/_data",
"Name": "immich_pgdata",
"Options": null,
"Scope": "local"
}
]
[
{
"CreatedAt": "2023-04-24T12:18:02+02:00",
"Driver": "local",
"Labels": {
"com.docker.compose.project": "immich",
"com.docker.compose.version": "2.17.2",
"com.docker.compose.volume": "pgdata"
},
"Mountpoint": "/home/jakob/docker-data-root/volumes/immich_pgdata/_data",
"Name": "immich_pgdata",
"Options": null,
"Scope": "local"
}
]
I've had this server running Immich for about 5 weeks, have been updating it with docker-compose pull and such. external: true might be a thing to look into. Or, just using folder mounts instead of volumes in the default docker-compose.yml file
6 replies