a year ago
Description: Self-hosted bookmark manager that is designed be to be minimal, fast
Category: Other
6 Replies
a year ago
Hey, nice to see you were able to get the template working again! I just have a bit of feedback -
Looking at their docker-compose.yml file it seems your linkding service is missing the volume mounted at
/etc/linkding/data
It's always best to have services connect to the database via the private network so that the template users avoid unnecessary egress fees, to do that update these variables like so -
LD_DB_HOST=${{Postgres.RAILWAY_PRIVATE_DOMAIN}}
LD_DB_PORT=${{Postgres.RAILWAY_TCP_APPLICATION_PORT}}
For the username variable, you should leave the username variable blank so the user can fill it out.
For the password variable, you can use
${{secret(32)}}
to have Railway generate a random 32-length string for their password.To minimize downtime use a heathcheck, for linkding this would be
/health
a year ago
I have trouble mounting volume at
/etc/linkding/data
, when inputing volume path got red wordsThanks for your advice, I'll modify it according to your suggestions
Attachments
a year ago
Hello, excuse me again, can you please take a look at how to fix this? I will provide any information you need
a year ago
Railway has very recently added support for mounting to sub directories of /etc/