Everything posted by FunnyPocketBook
-
[Support] FunnyPocketBook - Firefly-III (deprecated)
@jpheld You need to change the container port from 80 to 8080, then it will work again. Thanks for bringing this issue up, this wasn't documented in the release notes of csv-importer. I've pushed the changes, though it may take a few hours until the changes are updated in the CA
-
[Support] FunnyPocketBook - Firefly-III (deprecated)
You will need a separate docker container for the database. You can use either a MySQL, SQLite or a PostgreSQL database; I'm using the Postgres11 image by postgres, which you can get via CA. Once you have your database container, set the environment variable `DB_CONNECTION` to whichever database type you used ("pgsql" for PostgreSQL, "mysql" for MySQL and MariaDB, "sqlite" for SQLite). It is generally advised to create a new DB user for a new service (Google should be able to help you there, otherwise ask again) Then provide the IP address and port to the database container and enter a name for the database that Firefly should use. If the database name doesn't exist yet, a new database will be created. Firefly connects to the DB with the credentials you provide in DB_USERNAME and DB_PASSWORD, so enter the credentials of an existing DB user in there. This would give you the most basic setup of Firefly - there's loads of more settings that you can check out here.
-
[Support] FunnyPocketBook - Firefly-III (deprecated)
@SpyKiIIer Right, thanks! Copy-paste error on my side. I have updated the template but to have it adjust right now, you need to edit the container, toggle "Advanced View" in the top right and then in the WebUI field change the value to http://[IP]:[PORT:80]/
-
[Support] FunnyPocketBook - Firefly-III (deprecated)
@krabbyboy Like in the Firefly-III container, you also need to set the APP_KEY environment variable in the ynab importer. For some reason they didn't include that in the documentation. Edit: No longer needed in ynab-importer 2.0.3
-
[Support] FunnyPocketBook - Firefly-III (deprecated)
@Menthalo The way Firefly-III is configured when using Docker(file) is by setting the environment variables. If you were to host it with a LAMP stack, you would directly edit the .env file, but in our case we have to change the settings using the docker environment variables, which are set when editing the container. Have you created a service key and not an app key on the Spectre website? This issue seems to be the same as yours.
-
[Support] FunnyPocketBook - Firefly-III (deprecated)
@Menthalo I somehow forgot the port mapping in the spectre container, sorry and thanks for reporting! Once the CA has updated the templates, it should be fixed. If you need it right now, you can just click "Add another Path, Port, Variable, Label or Device" when editing the container, choose "Port" and put in 80 for the container port and 8081 or whichever port you want it to be for the host port
-
[Support] FunnyPocketBook - Firefly-III (deprecated)
Generally one container should only include one service. I added the csv, spectre, bunq and ynab importers though, if you search for Firefly in the CA you should find them
-
[Support] FunnyPocketBook - Firefly-III (deprecated)
Please use SmartPhoneLover's container Firefly-III Application Site: https://www.firefly-iii.org/ Docker Hub: https://hub.docker.com/r/fireflyiii/core Github: https://github.com/firefly-iii/firefly-iii Documentation: https://docs.firefly-iii.org/ Check https://github.com/firefly-iii/firefly-iii/blob/main/.env.example for all environment variables. Post any questions or issues relating to this docker in this thread.
-
[Plugin] CA User Scripts
Oh my god, I'm such an idiot... Thanks a lot! I spent more than 4 hours trying absolutely everything and didn't even think of checking my expression
-
[Plugin] CA User Scripts
I'm trying to run a python script every minute with this plugin but I cannot get it to work. I created a new entry, set scheduling to custom with `* * * * * *` as expression. The content of the script is #!/bin/bash /usr/bin/python3.7 /mnt/user/walzen/nzbget_download_rate.py Running manually (clicking on "Run Script" or "Run in Background") works perfectly fine but for some reason it doesn't execute automatically. I have other cron jobs (bash scripts) that are working normally.