AndrewCz
AndrewCz
Even though you don't work with Fedora, I see that you use travis for your CI, which should be able to test this role against Fedora with no additional work...
Unable to reproduce with plain `docker-compose.yml` file: ``` version: '3.6' services: suitecrm: image: "bitnami/suitecrm:7-debian-10" container_name: suitecrm restart: always networks: - frontend - backend environment: SUITECRM_HOST: 'oc1733c.ourcompose.com' SUITECRM_DATABASE_HOST: "database" SUITECRM_DATABASE_NAME: 'suitecrm'...
I was hoping that was the case too, but this happens on the server that's being started. See the output (emphasis added): > Oct 08 22:14:57 oc1733c-ourcompose-com--2021-10-08-15-28 *76fd57552e5d* [4271]: suitecrm...
It looks like it's doing it to other containers too... Using the official mariadb server as an example: ``` - hosts: all vars: ansible_python_interpreter: "/usr/local/bin/python3-docker" tasks: - name: (mariadb) The...
I just gunna confirm really quick here that my initial issue with suitecrm is solved with a workaround of setting the timeout to 200. This allows the initialization to complete...
``` root@docker-test:~# docker-compose --version docker-compose version 1.29.2, build unknown ``` ``` root@docker-test:~# docker --version Docker version 20.10.9, build c2ea9bc ``` ``` root@docker-test:~# /usr/bin/env python3 -c 'import docker; print(docker.__version__)' 5.0.3 ```...
I'm still looking into possible reasons why even on a restart this would happen, but at very least changing `restarted: yes` to `restarted: no` causes no timeout to be generated...
I tried to get fancy: ``` - debug: var: 0 | type_debug - docker_compose: [...snip...] timeout: 0 restarted: "yes" ``` ``` TASK [debug] ********************************************************************************************************** ok: [localhost] => { "0 |...
So, it seems like `docker-compose` never meant for a container to be restarted before it was `up`. Notice how it errors out on `restart` (because the container isn't built yet)...
I think the following lines from flipstarter do this, but in the opposite manner: ```solidity // require the campaign contract to be at index0 // allows for more than 2...