Skullky
Wordpress configuration
Hello,
Your user config and the original docker-compose file (the one you see in "apps" directory) are merged together.
Merging reference (https://docs.docker.com/reference/compose-file/merge/)
This is why you don't see your changes directly reflected on files.
But, this also means you only need to write what you want to add inside you user-config
docker-compose
file.
In your case, it would be :
To answer your functionnal problem,
You'll see that I have fixed the host path of the volume from ./custom.ini
(relative path) to ${APP_DATA_DIR}/data/custom.ini
(full path).
You should be able to edit your file at this location runtipi/app-data/wordpress/data/custom.ini
I hope this answer your question and solve your problem 🙂8 replies
Firefly DB password
Hello,
This script install runtipi in this folder
/opt/runtipi
Connect into your LXC through SSH or directly within Proxmox console,
Then you should find your variable in this file :
/opt/runtipi/app-data/firefly-iii/app.env
I can also suggest to install the filebrowser app from runtipi and you should already have the app-data directory mounted inside the app4 replies
ntfy Token and Account menu
Hello,
Looking at this : https://docs.ntfy.sh/config/#example-config
I can see you can define the auth file path as an environment variable.
I can suggest adding this in your user-config
NTFY_AUTH_FILE=/etc/ntfy/auth.db
You may also want to set NTFY_AUTH_DEFAULT_ACCESS=deny-all, for strict private access.
I didn't found a page with environment variable with possible value, this would be simpler.
Let me know if you manage to make it work, I'll be interested.
PS : If you are not familiar with user-config : https://runtipi.io/docs/guides/customize-app-config4 replies
Customizing docker compose for apps
Hello,
Runtipi has what you need, you should find your answers here :
https://runtipi.io/docs/guides/customize-app-config
Don't hesitate to ask if you need precision 😄
5 replies
Unable to get custom app to show on runtipi app store
Sorry I didn't see your other messages (mentioning you already restarted runtipi itself).
Coming back to this line in the runtipi logs :
Pulling repo https://github.com/you/your-appstore to /data/repos/repo-directory
1. If you don't see your repo link, it's probably a misconfiguration on your runtipi side.
2. If you do see your repo link, the problem is certainly in your app-store repository.
I'll be glad to provide more help if you want to communicate your repo link and/or if you have some logs to share 🙂3 replies
Unable to get custom app to show on runtipi app store
Hello,
When you change the app-store repo you have to restart runtipi, the "Update repository" button only pull the already configured app-store.
When checking logs you should see something like this :
Pulling repo https://github.com/you/your-appstore to /data/repos/repo-directory
3 replies
How to setup LOBECHAT
Hello @Olindo,
You have to set environment variables in your user-config, at least this one:
OLLAMA_PROXY_URL=http://ollama-cpu:11434
You must change the hostname of Ollama if you use another variant such as ollama-amd or ollama-nvidia.
The port should stay 11434 since you are not using the exposed port from your runtipi host but the internal docker network.
Here the official docs :
https://lobehub.com/fr/docs/self-hosting/environment-variables/model-provider#ollama
6 replies