-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Comments
Update the 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 |
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 |
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
The text was updated successfully, but these errors were encountered: