Ubuntu - 15.04
Docker - 1.11.2
My steps
After 5 step i see
* Operational MODE: preforking+threaded *
spawned uWSGI master process (pid: 10)
spawned uWSGI worker 1 (pid: 15, cores: 4)
spawned uWSGI worker 2 (pid: 16, cores: 4)
spawned uWSGI worker 3 (pid: 17, cores: 4)
WSGI app 0 (mountpoint='') ready in 5 seconds on interpreter 0x1327490 pid: 16 (default app)
WSGI app 0 (mountpoint='') ready in 5 seconds on interpreter 0x1327490 pid: 17 (default app)
WSGI app 0 (mountpoint='') ready in 5 seconds on interpreter 0x1327490 pid: 15 (default app)
But when i go to http://[ip]:9000 i get redirect to http://[ip]:9000/auth/login and in console log i see error
... many File errors ...
django.db.utils.ProgrammingError: relation "sentry_projectkey" does not exist
LINE 1: ..."."status", "sentry_projectkey"."date_added" FROM "sentry_pr...
^
SQL: SELECT "sentry_projectkey"."id", "sentry_projectkey"."project_id", "sentry_projectkey"."label", "sentry_projectkey"."public_key", "sentry_projectkey"."secret_key", "sentry_projectkey"."roles", "sentry_projectkey"."status", "sentry_projectkey"."date_added" FROM "sentry_projectkey" WHERE ("sentry_projectkey"."project_id" = %s AND "sentry_projectkey"."roles" = ("sentry_projectkey"."roles" | 1)) LIMIT 1
What am I doing wrong?
You definitely missed the upgrade step which sets up the database tables.
Most helpful comment
You definitely missed the
upgradestep which sets up the database tables.