From 84603afcc0ef4c11d2652cc0f3a7d223ff88398d Mon Sep 17 00:00:00 2001 From: Galuh Sahid Date: Tue, 26 Dec 2023 11:57:24 +0100 Subject: [PATCH] Add actualbudget --- .gitignore | 4 +++- actualbudget/docker-compose.yml | 22 ++++++++++++++++++++++ docs/domain-management.md | 0 photoprism/README.md | 15 +++++++++++---- 4 files changed, 36 insertions(+), 5 deletions(-) create mode 100644 actualbudget/docker-compose.yml create mode 100644 docs/domain-management.md diff --git a/.gitignore b/.gitignore index 2402d89..420db2e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ # Ignore all directories named 'nextcloud' and 'db' within the /home/ac1dburn/services directory -/nextcloud/nextcloud +/nextcloud/nextcloud/ /nextcloud/db/ +/actualbudget/data/ +/photoprism/storage/ # Exclude any log files or other temporary files that you don't want to commit *.log diff --git a/actualbudget/docker-compose.yml b/actualbudget/docker-compose.yml new file mode 100644 index 0000000..4d878b4 --- /dev/null +++ b/actualbudget/docker-compose.yml @@ -0,0 +1,22 @@ +version: '3' +services: + actual_server: + image: docker.io/actualbudget/actual-server:latest + ports: + # This line makes Actual available at port 5006 of the device you run the server on, + # i.e. http://localhost:5006. You can change the first number to change the port, if you want. + - '5006:5006' + environment: + # Uncomment any of the lines below to set configuration options. + # - ACTUAL_HTTPS_KEY=/data/selfhost.key + # - ACTUAL_HTTPS_CERT=/data/selfhost.crt + # - ACTUAL_UPLOAD_FILE_SYNC_SIZE_LIMIT_MB=20 + # - ACTUAL_UPLOAD_SYNC_ENCRYPTED_FILE_SYNC_SIZE_LIMIT_MB=50 + # - ACTUAL_UPLOAD_FILE_SIZE_LIMIT_MB=20 + # See all options and more details at https://actualbudget.github.io/docs/Installing/Configuration + # !! If you are not using any of these options, remove the 'environment:' tag entirely. + volumes: + # Change './actual-data' below to the path to the folder you want Actual to store its data in on your server. + # '/data' is the path Actual will look for its files in by default, so leave that as-is. + - ${PWD}/actual-data:/data + restart: unless-stopped \ No newline at end of file diff --git a/docs/domain-management.md b/docs/domain-management.md new file mode 100644 index 0000000..e69de29 diff --git a/photoprism/README.md b/photoprism/README.md index 2b9ace9..ff9413b 100644 --- a/photoprism/README.md +++ b/photoprism/README.md @@ -5,8 +5,15 @@ Setup `.env`: ``` -PHOTOPRISM_ADMIN_PASSWORD='' PHOTOPRISM_DATABASE_PASSWORD='' -PHOTOPRISM_MARIADB_PASSWORD='' -PHOTOPRISM_MARIADB_ROOT_PASSWORD='' -`` \ No newline at end of file +`` + +## Troubleshooting + +Mariadb refuses access to photoprism + +https://github.com/photoprism/photoprism/issues/1173 + +``` + +``` \ No newline at end of file