Hi, I ran into an issue while trying to deploy Jyzrox with Docker Compose on my NAS.
I’m not a developer, so I may not describe everything perfectly, but I’ll include the commands and logs I saw.
Environment
PostgreSQL and Redis both seem to start normally.
What happened
After running:
the worker container keeps restarting.
The main error in the worker logs is:
relation "site_configs" does not exist
Relevant log:
sqlalchemy.exc.ProgrammingError:
<class 'asyncpg.exceptions.UndefinedTableError'>:
relation "site_configs" does not exist
[SQL: SELECT site_configs.source_id, site_configs.overrides, site_configs.adaptive, site_configs.auto_probe, site_configs.updated_at
FROM site_configs
WHERE site_configs.adaptive != $1::JSONB]
I checked the PostgreSQL database manually:
docker exec -it jyzrox-postgres-1 psql -U vault -d vault -c "\dt"
The output was:
I also checked the Alembic version table:
docker exec -it jyzrox-postgres-1 psql -U vault -d vault -c "SELECT * FROM alembic_version;"
The output was:
ERROR: relation "alembic_version" does not exist
So it looks like the database is empty after the Docker setup.
Manual migration attempt
I also tried running the migration manually:
docker compose run --rm api sh -lc 'cd /app && python -m alembic upgrade head'
It started like this:
INFO [alembic.runtime.migration] Context impl PostgresqlImpl.
INFO [alembic.runtime.migration] Will assume transactional DDL.
INFO [alembic.runtime.migration] Running upgrade -> 0001, initial schema (consolidated baseline)
INFO [alembic.runtime.migration] Running upgrade 0001 -> 0002, add local library patterns and gallery source paths
But then it failed with:
relation "galleries" does not exist
Relevant log:
File "/app/migrations/versions/0002_library_patterns_source_path.py", line 20, in upgrade
op.add_column("galleries", sa.Column("source_path", sa.Text(), nullable=True))
sqlalchemy.exc.ProgrammingError:
<class 'asyncpg.exceptions.UndefinedTableError'>:
relation "galleries" does not exist
[SQL: ALTER TABLE galleries ADD COLUMN source_path TEXT]
What I expected
Since this was a fresh Docker deployment, I expected the database tables to be created automatically, or at least for the documented Docker setup to complete without the worker repeatedly restarting.
What actually happened
- PostgreSQL starts
- Redis starts
- The database has no tables
- The worker keeps restarting
- Manual Alembic migration also fails because
galleries does not exist
Could you please take a look? I’m not sure if I missed a setup step, or if there is something wrong with the fresh Docker migration process.
Hi, I ran into an issue while trying to deploy Jyzrox with Docker Compose on my NAS.
I’m not a developer, so I may not describe everything perfectly, but I’ll include the commands and logs I saw.
Environment
Deployment method: Docker Compose
Host: Linux-based NAS
Project path:
/vol1/1000/docker/JyzroxContainers involved:
jyzrox-postgres-1jyzrox-redis-1jyzrox-api-1jyzrox-worker-1PostgreSQL and Redis both seem to start normally.
What happened
After running:
the worker container keeps restarting.
The main error in the worker logs is:
Relevant log:
I checked the PostgreSQL database manually:
The output was:
I also checked the Alembic version table:
The output was:
So it looks like the database is empty after the Docker setup.
Manual migration attempt
I also tried running the migration manually:
docker compose run --rm api sh -lc 'cd /app && python -m alembic upgrade head'It started like this:
But then it failed with:
Relevant log:
What I expected
Since this was a fresh Docker deployment, I expected the database tables to be created automatically, or at least for the documented Docker setup to complete without the worker repeatedly restarting.
What actually happened
galleriesdoes not existCould you please take a look? I’m not sure if I missed a setup step, or if there is something wrong with the fresh Docker migration process.