-
Notifications
You must be signed in to change notification settings - Fork 42
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
Database migration error #84
Comments
Hello 👋 which tag were you using before updating? |
I always was on latest. Edit: I tried the tags |
Can you manually access the database and delete the If this is too technical and you don't mind DM me (on discord perhaps) the sqlite database I can fix it for you! |
Also maybe important:
EDIT: Solution for this: #86 (comment) I've deleted all tables and started from fresh. This is, what I get now, with a “clean” install. As well as:
|
This is my docker compose: version: "3.8"
services:
ferdium-server:
#image: ferdium/ferdium-server:1.3.16
image: ferdium/ferdium-server:latest
container_name: ferdium-server
environment:
TZ: 'Europe/Berlin'
#NODE_ENV: 'development'
NODE_ENV: 'production'
APP_URL: 'https://<url>'
DB_CONNECTION: 'pg'
DB_HOST: '127.0.0.1'
DB_PORT: 5432
DB_USER: 'ferdium'
DB_PASSWORD: '<pw>'
DB_DATABASE: '<db>'
DB_SSL: false
MAIL_CONNECTION: 'smtp'
SMTP_HOST: '<mail.srv>'
SMTP_PORT: 465
MAIL_SSL: true
MAIL_USERNAME: '<un>'
MAIL_PASSWORD: '<p>'
MAIL_SENDER: '[email protected]'
IS_CREATION_ENABLED: true
IS_DASHBOARD_ENABLED: true
IS_REGISTRATION_ENABLED: true
CONNECT_WITH_FRANZ: false
DATA_DIR: '/data'
HOST: 192.168.8.3
PORT: 3017
JWT_USE_PEM: true
volumes:
- ferdium-database:/data
- ferdium-recipes:/app/build/recipes
restart: unless-stopped
privileged: true
network_mode: host
volumes:
ferdium-recipes:
ferdium-database: |
Using Ferdium-Server via Docker with tag
latest
The text was updated successfully, but these errors were encountered: