Hi,
I have updated my compose file to use the tag:2.0.32-full instead of the 1.9.57-full but after i’m getting his error messages when access the main app in a webbrowser.
What can course this and where can I find more details about the error?
Hope someone can help as I’m stock in version 1.x right now.
Info: it is the same on all app’s in the multi app
http://domain.tld/admin
http://domain.tld/apps/app1/admin/
http://domain.tld/apps/app2/admin/
http://domain.tld/apps/app3/admin/
App error
y[e] is not a function
Docker compose file
networks:
nocobase:
driver: bridge
volumes:
storage: null
postgres: null
postgres-backups: null
services:
app:
#image: nocobase/nocobase:1.9.57-full
image: nocobase/nocobase:2.0.32-full
restart: always
networks:
- nocobase
environment:
- APP_KEY=${APP-KEY}
- ENCRYPTION_FIELD_KEY=${ENCRYPT-KEY}
- DB_DIALECT=${DB_DIALECT}
- DB_TABLE_PREFIX=${DB_TABLE_PREFIX}
- DB_HOST=${DB_HOST}
- DB_PORT=${DB_PORT}
- DB_DATABASE=${DB_DATABASE}
- DB_USER=${DB_USER}
- DB_PASSWORD=${DB_PASSWORD}
- TZ=Europe/Copenhagen
- NOCOBASE_PKG_USERNAME=${NOCOBASE_PKG_USERNAME}
- NOCOBASE_PKG_PASSWORD=${NOCOBASE_PKG_PASSWORD}
volumes:
- storage:/app/nocobase/storage
ports:
- ${APP_PORT}:80
depends_on:
- postgres
postgres:
image: postgres:10
restart: always
networks:
- nocobase
command: postgres -c wal_level=logical
ports:
- ${DB_POSTGRES_PORT}:5432
volumes:
- postgres:/var/lib/postgresql/data
- postgres-backups:/backups
environment:
POSTGRES_USER: ${DB_USER}
POSTGRES_DB: ${DB_DATABASE}
POSTGRES_PASSWORD: ${DB_PASSWORD}