ReinerNippes

Results 56 comments of ReinerNippes

Hi, may I ask what Linux distro you are using? As far as I remember this error is about the python version used.

If you run Debian 10 the package python3-docker should be installed. https://github.com/ReinerNippes/nextcloud_on_docker/blob/a0c91eff87c44c5598156ff22ed6e1d35e10685f/roles/prep_docker/tasks/Debian.yml#L39 Anyhow python 2.6 and 3.1 are rather old. I think Python 3.6 or 3.7 is included in Debian...

Yeah. Sorry. But it seems (to me) impossible to maintain a script that simply installs ansible. You have to a kind python guru-hero to this. I normally run and test...

yes. there is no arm64 image of elasticsearch 7.6.2 https://hub.docker.com/_/elasticsearch?tab=tags&page=1&ordering=last_updated&name=7.6.2 you may try a newer version by changing the following line. nevertheless i can't tell you if it would work....

The postgres dump - at least on my maschine - wouldn't create a nextcloud database. It would only create the schema inside a database. See the postgres docs: https://www.postgresql.org/docs/12/backup-dump.html there...

I was thinking about a block to have just one when clause. Or an include_tasks when statement. And I wanted to check if there is no ansible variable set by...

I'm afraid no. In a container the command `systemd-detect-virt` might not be available. Or? I found two facts: - ansible_virtualization_role: host - ansible_virtualization_type: kvm I only have to check the...

It would be: ` when: not "container" in ansible_virtualization_tech_guest` to disable tasks inside a container. But next iI'm getting a ``` TASK [redis : start and enable redis] ************************************************************************************************************************************************ fatal:...

I'm developing and testing the "nextcloud" playbook on aws ec2. Sometimes on hetzner vms. I wouldn't do it in a container. Because of the limitations we discuss here. And I...

Hi Peter, the original intention was to be able to install Nextcloud also in a distributed environment. That is to say to have Redis, DB, Office and so on on...