Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

render.yaml using deprecated docker images #5874

Closed
nickwild-999 opened this issue Jun 14, 2024 · 3 comments
Closed

render.yaml using deprecated docker images #5874

nickwild-999 opened this issue Jun 14, 2024 · 3 comments

Comments

@nickwild-999
Copy link

Bug Description

When clicking on the one click install to render it uses lt deprecated Docker Images

Expected behavior

It should use upto date images

@nickwild-999 nickwild-999 changed the title render.yaml using deprecated docker imagesEx: In DarkMode, a blank square appears in bottom right corner while scrolling render.yaml using deprecated docker images Jun 14, 2024
Copy link
Contributor

greptile-apps bot commented Jun 14, 2024

Update the render.yaml file to use the latest Docker images. Specifically, change the image.url fields for the front, server, and twenty_postgres services to the latest versions available.

services:
- type: web
  name: front
  runtime: image
  plan: free
  image:
    url: twentycrm/twenty-front:latest
  autoDeploy: false
  envVars:
    - key: REACT_APP_SERVER_BASE_URL
      fromService:
        name: server
        type: web
        envVarKey: RENDER_EXTERNAL_URL
- type: web
  name: server
  runtime: image
  image:
    url: twentycrm/twenty-server:latest
  dockerCommand: "sh -c ./scripts/render-run.sh"
  autoDeploy: false
  plan: standard
  envVars:
    - key: FRONT_BASE_URL
      fromService:
        name: front
        type: web
        envVarKey: RENDER_EXTERNAL_URL
    - key: ACCESS_TOKEN_SECRET
      generateValue: true
    - key: LOGIN_TOKEN_SECRET
      generateValue: true
    - key: REFRESH_TOKEN_SECRET
      generateValue: true
    - key: FILE_TOKEN_SECRET
      generateValue: true
    - key: PG_DATABASE_HOST
      fromService:
        name: twenty_postgres
        type: pserv
        property: host
    - key: PG_DATABASE_PORT
      fromService:
        name: twenty_postgres
        type: pserv
        property: port
  disk:
    name: twenty-disk
    mountPath: /.local-storage
    sizeGB: 5
- type: pserv
  name: twenty_postgres
  plan: starter
  runtime: image
  image:
    url: twentycrm/twenty-postgres:latest
  autoDeploy: false
  disk:
    name: data
    mountPath: /var/lib/postgresql/data
    sizeGB: 10
  envVars:
  - key: POSTGRES_USER
    value: postgres
  - key: POSTGRES_PASSWORD
    value: postgres
  - key: POSTGRES_DB
    value: default

References

/render.yaml

Ask Greptile

@FelixMalfait
Copy link
Member

I think we should deprecate render/railway for now. We don't have time to keep it up-to-date as we are still focused on bringing Twenty to parity with the best CRMs. We will focus on easy self-hosting options once we get out of beta mode. Right now the recommended option to self-host should be the docker-compose

@FelixMalfait
Copy link
Member

#6167

@github-project-automation github-project-automation bot moved this from 🆕 New to ✅ Done in Product development ✅ Sep 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: ✅ Done
Development

No branches or pull requests

2 participants