

your in luck, as I couldnt find the issue when I posted.
But there is an update to this 👉 https://github.com/nextcloud/android/issues/15822


your in luck, as I couldnt find the issue when I posted.
But there is an update to this 👉 https://github.com/nextcloud/android/issues/15822
sure, you can see below that port 53 is only on a secondary IP I have on my docker host.
---
services:
pihole01:
image: pihole/pihole:latest
container_name: pihole01
ports:
- "8180:80/tcp"
- "9443:443/tcp"
- "192.168.1.156:53:53/tcp" # this will only bind to that IP
- "192.168.1.156:53:53/udp" # this will only bind to that IP
- "192.168.1.156:67:67/udp" # this will only bind to that IP
environment:
TZ: 'Europe/London'
FTLCONF_webserver_api_password: 'mysecurepassword'
FTLCONF_dns_listeningMode: 'all'
dns:
- '127.0.0.1'
- '192.168.1.1'
restart: unless-stopped
labels:
- "traefik.http.routers.pihole_primary.rule=Host(`dns01.example.com`)"
- "traefik.http.routers.pihole_primary.service=pihole_primary"
- "traefik.http.services.pihole_primary.loadbalancer.server.port=80"
Docker by default will bind exposed ports to all IPs, but you can override this by setting an IP on the port exposed so thet a local only server is only accessable on 127.0.0.1
I do this with things that should go down my VPN only
https://docs.docker.com/reference/compose-file/services/#ports


This is a know issue that has a very long issue on github, it started for me when Google changed the rules on full file access. But the latest version of the app has been rock solid.
I ended up downloading all my photos to my laptop and doing a sync from there


Can use your image as my 404 page please?


But who programs the ai programs?


Yes that, don’t run a full desktop. Run the raspian light image.
My homelab was once 10 raspberry pis all networked up as a big mess.


It ok, but you will need an external signaling server to make it work over NAT. Also it’s only good for a few in video chat as the load peer to peer.


I would echo that, I’ve been a generalist computer whatnot for over 10 years. I have had to learn to network, virtual network with VMware. Manage Linux servers, then virtual servers. Switch from VMware to aws and understand basic terraform, with ansible learning as well.
Where I work we are on ansible repo 3 I think, as we have matured in how we use it and what works and what doesn’t.
When homelabing, you get to be all the things a big company would have job roles for.


I use nextcloud, the builtin photos app is pants. But memories is amzing


oh, I do need to look at the docker install. I have only every run it from a server with php on it, Im not going to be much help I dont think.


How do you run nextcloud?


Sorry for the late replay, the day ran away from me.
Check this out 👉 https://github.com/mhzawadi/ansible-template/tree/main/roles/docker
This is the role I use to setup docker, check out the readme for how to use


Some issues are like that, you fix the issue presented and find more issues to fix.
I do it for a day job and have had issues that I can’t explain as anything more than restart a service and now it works, I also run my own kit and have had the same type of issue.


Will do when I get home


you need to use deb822 as the repo module, like this
- name: Setup deb822 formatted repositorie
ansible.builtin.deb822_repository:
name: php
types: deb
uris: https://download.docker.com/linux/debian
components: stable
suites: "{{ ansible_distribution_release }}"
signed_by: https://download.docker.com/linux/debian/gpg
state: present
enabled: true
when: (ansible_distribution == 'Debian' and ansible_distribution_major_version >= '13')


I do, but need my laptop. The bit you need to fix is adding a new deb repo, will try and post tomorrow now


Your issue could be a missing index, check the admin settings page and see if it has any advice.
I also found that my files_cache table was missing an index from way back, I had to empty the table and create the index. But the speed boost was insane, it went from painfully slow to almost instant.


I run nextcloud, but I do use other apps. Like contacts and calendar, the news app and even the whiteboard.
But I run it like the work servers I manage, I still don’t understand how so many find running nextcloud so difficult.
Yes and no, there have been issues with the android app for a long time. Some of it was Google and some the way it would detect files, it just happens that I posted the GitHub issue.