Installation issue, using portainer stack on Synology

Hello.

I used the docker-compose script below in a stack to install in Portainer.

The container installs but the program never gets past the starting phase…

In the log, i can see the program errors while trying to connect to postgresql… this ends up causing some errors and the script restarts…

Does anyone know how i can get past this point? Any help would be appreciated.

Thanks.
Tim.

version: ‘3.3’
services:
baserow:
container_name: baserow
environment:
- ‘BASEROW_PUBLIC_URL=https://www.yourdomain.com’
volumes:
- ‘baserow_data:/baserow/data’
ports:
- ‘3001:80’
restart: unless-stopped
image: ‘baserow/baserow:1.10.1’

Hi @TC2020 sorry you hit this issue, could you try changing your config to:

version: '3.3'
services:
  baserow:
    container_name: baserow
    environment:
      - BASEROW_PUBLIC_URL=https://www.yourdomain.com
      - BASEROW_CADDY_ADDRESSES=:8080
    volumes:
      - 'baserow_data:/baserow/data'
    ports:
      - '3001:8080'
    restart: unless-stopped
    image: 'baserow/baserow:1.10.1'

If this doesn’t help would you mind PMing me the full logs so I can have a closer look?

Thanks!

That did the trick! Thanks Nigel, much appreciated.

T.