Skullky
Skullky
RRuntipi
Created by patrickdronk on 2/5/2025 in #🙋🏼・help
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 :
services:
wordpress:
volumes:
- ${APP_DATA_DIR}/data/custom.ini:/usr/local/etc/php/conf.d/custom.ini
services:
wordpress:
volumes:
- ${APP_DATA_DIR}/data/custom.ini:/usr/local/etc/php/conf.d/custom.ini
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
RRuntipi
Created by Beard on 1/14/2025 in #🙋🏼・help
Windows app not installing
No description
6 replies
RRuntipi
Created by Agent1007 on 1/8/2025 in #🙋🏼・help
Firefly DB password
Regarding the mysqldump operation, I think you just need make sure the host performing the action can reach the firefly-iii-db container (which is only exposed inside the internal docker network).
4 replies
RRuntipi
Created by Agent1007 on 1/8/2025 in #🙋🏼・help
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 app
4 replies
RRuntipi
Created by subdee on 11/19/2024 in #🙋🏼・help
Cannot access Homebox from external domain
Hello @subdee, You should try with the latest update, I was able to make it work
11 replies
RRuntipi
Created by jss1008 on 11/29/2024 in #🙋🏼・help
calibre
Hello, I am looking into this. I know where is the problem and I am thinking of an elegant way of fixing it.
5 replies
RRuntipi
Created by bernacee on 12/28/2024 in #🙋🏼・help
ntfy Token and Account menu
Just tried, it works. I suggest to add at least these :
NTFY_AUTH_FILE=/etc/ntfy/auth.db
NTFY_AUTH_DEFAULT_ACCESS=deny-all
NTFY_ENABLE_LOGIN=true
NTFY_AUTH_FILE=/etc/ntfy/auth.db
NTFY_AUTH_DEFAULT_ACCESS=deny-all
NTFY_ENABLE_LOGIN=true
4 replies
RRuntipi
Created by bernacee on 12/28/2024 in #🙋🏼・help
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-config
4 replies
RRuntipi
Created by kevinskymountain on 11/23/2024 in #🙋🏼・help
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
RRuntipi
Created by HomeLabJunkie on 11/21/2024 in #🙋🏼・help
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
RRuntipi
Created by HomeLabJunkie on 11/21/2024 in #🙋🏼・help
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
RRuntipi
Created by pappyeric on 11/19/2024 in #🙋🏼・help
Gramps Web
Hello I was able to reproduce the issue and may have a fix for it, I'm working on it
4 replies
RRuntipi
Created by Olindo on 11/17/2024 in #🙋🏼・help
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
RRuntipi
Created by Fr_Fredow on 11/5/2024 in #🙋🏼・help
Test plugin
Looking at your bunkerweb config, you database isn't saved on the host, you should add a volume like this in bw-db :
volumes:
- ${APP_DATA_DIR}/data/db:/var/lib/mysql
volumes:
- ${APP_DATA_DIR}/data/db:/var/lib/mysql
You can check the docker-compose of nextcloud-mini for a good example
38 replies
RRuntipi
Created by Fr_Fredow on 11/5/2024 in #🙋🏼・help
Test plugin
And the data have been written where it should be ?
38 replies
RRuntipi
Created by Fr_Fredow on 11/5/2024 in #🙋🏼・help
Test plugin
Be sure to have somewhere to save the config data, do you have a mapped volume in docker-compose ?
38 replies
RRuntipi
Created by Fr_Fredow on 11/5/2024 in #🙋🏼・help
Test plugin
Sorry I don't know about this. (didn't test) It probably just check if there is existing installation data : No -> Create DB, config files...etc... then print admin credentials Yes -> Just load parameters then print the URL Just guessing at this point
38 replies
RRuntipi
Created by Fr_Fredow on 11/5/2024 in #🙋🏼・help
Test plugin
No description
38 replies