my installation is in docker version 1.23
follows my .env
version: ‘3.7’
services:
baserow:
image: baserow/baserow:1.23.0
volumes:
- baserow_data:/baserow/data
networks: - my_network
environment: - BASEROW_PUBLIC_URL=https://yourdomain.com.br
- BASEROW_CADDY_ADDRESSES=:8080
- EMAIL_SMTP=smtp.zoho.com
- EMAIL_SMTP_HOST=smtp.zoho.com
- EMAIL_SMTP_PORT=587
- EMAIL_SMTP_USE_TLS=true
- EMAIL_SMTP_USER=youremail
- EMAIL_SMTP_PASSWORD=youremailpassword
- FROM_EMAIL=youremail
deploy:
mode: replicated
replicas: 1 placement: constraints: - node.role == manager labels: - traefik.enable=true - traefik.http.routers.baserow.rule=Host(yourdomain.com.br
) - traefik.http.services.baserow.loadbalancer.server.port=8080 - traefik.http.routers.baserow.service=baserow - traefik.http.routers.baserow.tls.certresolver =letsencryptresolver - traefik.http.routers.baserow.entrypoints=websecure - traefik.http.routers.baserow.tls=true networks: my_network: external: true name: my_network volumes: baserow_data: external: true name: baserow_data I want to update it and I can’t, it gives an error in the url, can you help me?