Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $ docker ps
- CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
- 4452e45217cd openconceptlab/oclapi:dev "bash run_flower.sh" 17 hours ago Up 17 hours (healthy) 22/tcp, 8000/tcp, 0.0.0.0:5555->5555/tcp oclapi_flower_1
- 87d6de75c791 openconceptlab/oclapi:dev "bash run_celery.sh" 17 hours ago Up 17 hours (healthy) 22/tcp, 8000/tcp oclapi_celery_1
- 66c54b502973 openconceptlab/oclapi:dev "/bin/sh -c 'bash ..." 17 hours ago Up 17 hours (healthy) 0.0.0.0:8000-8001->8000-8001/tcp, 0.0.0.0:2000->22/tcp oclapi_api_1
- 9eb49d05d452 openconceptlab/oclsolr:production "docker-entrypoint..." 17 hours ago Up 17 hours (healthy) 0.0.0.0:8983->8983/tcp oclapi_solr_1
- bd318db76497 redis:3.2.10 "docker-entrypoint..." 17 hours ago Up 17 hours (healthy) 0.0.0.0:6379->6379/tcp oclapi_redis_1
- 833d8ee942bf mongo:3.2.11 "/entrypoint.sh mo..." 17 hours ago Up 17 hours (healthy) 0.0.0.0:27017->27017/tcp oclapi_mongo_1
- $ curl -H "Authorization: Token 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6" "http://localhost:8000/orgs/"
- [{"id": "OCL", "name": "Open Concept Lab", "url": "/orgs/OCL/"}]
- $ docker network ls
- NETWORK ID NAME DRIVER SCOPE
- 4ba68295ce04 bridge bridge local
- 5ec92c4f0178 host host local
- cbab5f74ed5f none null local
- e3eb662dfa93 oclapi_default bridge local
- $ git clone https://github.com/OpenConceptLab/ocl_web.git
- Cloning into 'ocl_web'...
- remote: Counting objects: 13532, done.
- remote: Compressing objects: 100% (111/111), done.
- remote: Total 13532 (delta 111), reused 152 (delta 87), pack-reused 13334
- Receiving objects: 100% (13532/13532), 2.29 MiB | 2.86 MiB/s, done.
- Resolving deltas: 100% (10076/10076), done.
- $ cd ocl_web
- $ git fetch
- $ git checkout -b jetstream origin/jetstream
- Branch jetstream set up to track remote branch jetstream from origin.
- Switched to a new branch 'jetstream'
- $ docker-compose up
- Creating network "oclweb_default" with the default driver
- Creating volume "oclweb_db_web_data" with default driver
- Creating oclweb_db_web_1 ...
- Creating oclweb_db_web_1 ... done
- Creating oclweb_web_1 ...
- Creating oclweb_web_1 ... done
- Attaching to oclweb_db_web_1, oclweb_web_1
- db_web_1 | The files belonging to this database system will be owned by user "postgres".
- db_web_1 | This user must also own the server process.
- db_web_1 |
- db_web_1 | The database cluster will be initialized with locale "en_US.utf8".
- db_web_1 | The default database encoding has accordingly been set to "UTF8".
- db_web_1 | The default text search configuration will be set to "english".
- db_web_1 |
- db_web_1 | Data page checksums are disabled.
- db_web_1 |
- db_web_1 | fixing permissions on existing directory /var/lib/postgresql/data ... ok
- db_web_1 | creating subdirectories ... ok
- web_1 | Starting OpenBSD Secure Shell server: sshd.
- db_web_1 | selecting default max_connections ... 100
- web_1 | wait-for-it.sh: waiting 15 seconds for dbweb.openconceptlab.org:5432
- db_web_1 | selecting default shared_buffers ... 128MB
- db_web_1 | selecting dynamic shared memory implementation ... posix
- db_web_1 | creating configuration files ... ok
- db_web_1 | running bootstrap script ... ok
- db_web_1 | performing post-bootstrap initialization ... ok
- db_web_1 | syncing data to disk ... ok
- db_web_1 |
- db_web_1 | Success. You can now start the database server using:
- db_web_1 |
- db_web_1 | pg_ctl -D /var/lib/postgresql/data -l logfile start
- db_web_1 |
- db_web_1 |
- db_web_1 | WARNING: enabling "trust" authentication for local connections
- db_web_1 | You can change this by editing pg_hba.conf or using the option -A, or
- db_web_1 | --auth-local and --auth-host, the next time you run initdb.
- db_web_1 | waiting for server to start....LOG: could not bind IPv6 socket: Cannot assign requested address
- db_web_1 | HINT: Is another postmaster already running on port 5432? If not, wait a few seconds and retry.
- db_web_1 | LOG: database system was shut down at 2017-09-01 14:22:16 UTC
- db_web_1 | LOG: MultiXact member wraparound protections are now enabled
- db_web_1 | LOG: database system is ready to accept connections
- db_web_1 | LOG: autovacuum launcher started
- db_web_1 | done
- db_web_1 | server started
- db_web_1 | CREATE DATABASE
- db_web_1 |
- db_web_1 | CREATE ROLE
- db_web_1 |
- db_web_1 |
- db_web_1 | /usr/local/bin/docker-entrypoint.sh: ignoring /docker-entrypoint-initdb.d/*
- db_web_1 |
- db_web_1 | LOG: received fast shutdown request
- db_web_1 | LOG: aborting any active transactions
- db_web_1 | LOG: autovacuum launcher shutting down
- db_web_1 | waiting for server to shut down....LOG: shutting down
- db_web_1 | LOG: database system is shut down
- db_web_1 | done
- db_web_1 | server stopped
- db_web_1 |
- db_web_1 | PostgreSQL init process complete; ready for start up.
- db_web_1 |
- db_web_1 | LOG: database system was shut down at 2017-09-01 14:22:18 UTC
- db_web_1 | LOG: MultiXact member wraparound protections are now enabled
- db_web_1 | LOG: autovacuum launcher started
- db_web_1 | LOG: database system is ready to accept connections
- db_web_1 | LOG: incomplete startup packet
- web_1 | wait-for-it.sh: dbweb.openconceptlab.org:5432 is available after 3 seconds
- web_1 |
- web_1 | Host IP=172.19.0.1
- web_1 |
- web_1 | Syncing...
- web_1 | Creating tables ...
- web_1 | Creating table auth_permission
- web_1 | Creating table auth_group_permissions
- web_1 | Creating table auth_group
- web_1 | Creating table django_content_type
- web_1 | Creating table django_session
- web_1 | Creating table django_site
- web_1 | Creating table django_admin_log
- web_1 | Creating table south_migrationhistory
- web_1 | Creating table avatar_avatar
- web_1 | Creating table users_user_groups
- web_1 | Creating table users_user_user_permissions
- web_1 | Creating table users_user
- web_1 | Creating table account_emailaddress
- web_1 | Creating table account_emailconfirmation
- web_1 | Installing custom SQL ...
- web_1 | Installing indexes ...
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 |
- web_1 | Synced:
- web_1 | > django.contrib.auth
- web_1 | > django.contrib.contenttypes
- web_1 | > django.contrib.sessions
- web_1 | > django.contrib.sites
- web_1 | > django.contrib.messages
- web_1 | > django.contrib.staticfiles
- web_1 | > django.contrib.admin
- web_1 | > south
- web_1 | > crispy_forms
- web_1 | > avatar
- web_1 | > bootstrap3
- web_1 | > users
- web_1 | > allauth
- web_1 | > allauth.account
- web_1 | > django.contrib.humanize
- web_1 | > debug_toolbar
- web_1 |
- web_1 | Not synced (use migrations):
- web_1 | - allauth.socialaccount
- web_1 | - django_extensions
- web_1 | (use ./manage.py migrate to migrate these)
- web_1 | Running migrations for socialaccount:
- web_1 | - Migrating forwards to 0011_auto__chg_field_socialtoken_token.
- web_1 | > socialaccount:0001_initial
- web_1 | > socialaccount:0002_genericmodels
- web_1 | > socialaccount:0003_auto__add_unique_socialaccount_uid_provider
- web_1 | > socialaccount:0004_add_sites
- web_1 | > socialaccount:0005_set_sites
- web_1 | > socialaccount:0006_auto__del_field_socialapp_site
- web_1 | > socialaccount:0007_auto__add_field_socialapp_client_id
- web_1 | > socialaccount:0008_client_id
- web_1 | > socialaccount:0009_auto__add_field_socialtoken_expires_at
- web_1 | > socialaccount:0010_auto__chg_field_socialtoken_token
- web_1 | > socialaccount:0011_auto__chg_field_socialtoken_token
- web_1 | - Loading initial data for socialaccount.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | Running migrations for django_extensions:
- web_1 | - Migrating forwards to 0001_empty.
- web_1 | > django_extensions:0001_empty
- web_1 | - Loading initial data for django_extensions.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | ===================================
- web_1 | Creating "root" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "root" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "root" in API. Server responded with 404
- web_1 | ===================================
- web_1 | ===================================
- web_1 | Creating "admin" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "admin" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "admin" in API. Server responded with 404
- web_1 | ===================================
- web_1 | Starting the server
- web_1 | grunt-cli: The grunt command line interface (v1.2.0)
- web_1 |
- web_1 | Fatal error: Unable to find local grunt.
- web_1 |
- web_1 | If you're seeing this message, grunt hasn't been installed locally to
- web_1 | your project. For more information about installing and configuring grunt,
- web_1 | please see the Getting Started guide:
- web_1 |
- web_1 | http://gruntjs.com/getting-started
- db_web_1 | LOG: incomplete startup packet
- oclweb_web_1 exited with code 99
- web_1 | Starting OpenBSD Secure Shell server: sshd.
- web_1 | wait-for-it.sh: waiting 15 seconds for dbweb.openconceptlab.org:5432
- web_1 | wait-for-it.sh: dbweb.openconceptlab.org:5432 is available after 3 seconds
- web_1 |
- web_1 | Host IP=172.19.0.1
- web_1 |
- web_1 | Syncing...
- web_1 | Creating tables ...
- web_1 | Creating table auth_permission
- web_1 | Creating table auth_group_permissions
- web_1 | Creating table auth_group
- web_1 | Creating table django_content_type
- web_1 | Creating table django_session
- web_1 | Creating table django_site
- web_1 | Creating table django_admin_log
- web_1 | Creating table south_migrationhistory
- web_1 | Creating table avatar_avatar
- web_1 | Creating table users_user_groups
- web_1 | Creating table users_user_user_permissions
- web_1 | Creating table users_user
- web_1 | Creating table account_emailaddress
- web_1 | Creating table account_emailconfirmation
- web_1 | Installing custom SQL ...
- web_1 | Installing indexes ...
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 |
- web_1 | Synced:
- web_1 | > django.contrib.auth
- web_1 | > django.contrib.contenttypes
- web_1 | > django.contrib.sessions
- web_1 | > django.contrib.sites
- web_1 | > django.contrib.messages
- web_1 | > django.contrib.staticfiles
- web_1 | > django.contrib.admin
- web_1 | > south
- web_1 | > crispy_forms
- web_1 | > avatar
- web_1 | > bootstrap3
- web_1 | > users
- web_1 | > allauth
- web_1 | > allauth.account
- web_1 | > django.contrib.humanize
- web_1 | > debug_toolbar
- web_1 |
- web_1 | Not synced (use migrations):
- web_1 | - allauth.socialaccount
- web_1 | - django_extensions
- web_1 | (use ./manage.py migrate to migrate these)
- web_1 | Running migrations for socialaccount:
- web_1 | - Migrating forwards to 0011_auto__chg_field_socialtoken_token.
- web_1 | > socialaccount:0001_initial
- web_1 | > socialaccount:0002_genericmodels
- web_1 | > socialaccount:0003_auto__add_unique_socialaccount_uid_provider
- web_1 | > socialaccount:0004_add_sites
- web_1 | > socialaccount:0005_set_sites
- web_1 | > socialaccount:0006_auto__del_field_socialapp_site
- web_1 | > socialaccount:0007_auto__add_field_socialapp_client_id
- web_1 | > socialaccount:0008_client_id
- web_1 | > socialaccount:0009_auto__add_field_socialtoken_expires_at
- web_1 | > socialaccount:0010_auto__chg_field_socialtoken_token
- web_1 | > socialaccount:0011_auto__chg_field_socialtoken_token
- web_1 | - Loading initial data for socialaccount.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | Running migrations for django_extensions:
- web_1 | - Migrating forwards to 0001_empty.
- web_1 | > django_extensions:0001_empty
- web_1 | - Loading initial data for django_extensions.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | ===================================
- web_1 | Creating "root" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "root" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "root" in API. Server responded with 404
- web_1 | ===================================
- web_1 | ===================================
- web_1 | Creating "admin" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "admin" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "admin" in API. Server responded with 404
- web_1 | ===================================
- web_1 | Starting the server
- web_1 | grunt-cli: The grunt command line interface (v1.2.0)
- web_1 |
- web_1 | Fatal error: Unable to find local grunt.
- web_1 |
- web_1 | If you're seeing this message, grunt hasn't been installed locally to
- web_1 | your project. For more information about installing and configuring grunt,
- web_1 | please see the Getting Started guide:
- web_1 |
- web_1 | http://gruntjs.com/getting-started
- web_1 | Starting OpenBSD Secure Shell server: sshd.
- web_1 | wait-for-it.sh: waiting 15 seconds for dbweb.openconceptlab.org:5432
- web_1 | wait-for-it.sh: dbweb.openconceptlab.org:5432 is available after 0 seconds
- web_1 |
- web_1 | Host IP=172.19.0.1
- web_1 |
- web_1 | Syncing...
- web_1 | Creating tables ...
- web_1 | Installing custom SQL ...
- web_1 | Installing indexes ...
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 |
- web_1 | Synced:
- web_1 | > django.contrib.auth
- web_1 | > django.contrib.contenttypes
- web_1 | > django.contrib.sessions
- web_1 | > django.contrib.sites
- web_1 | > django.contrib.messages
- web_1 | > django.contrib.staticfiles
- web_1 | > django.contrib.admin
- web_1 | > south
- web_1 | > crispy_forms
- web_1 | > avatar
- web_1 | > bootstrap3
- web_1 | > users
- web_1 | > allauth
- web_1 | > allauth.account
- web_1 | > django.contrib.humanize
- web_1 | > debug_toolbar
- web_1 |
- web_1 | Not synced (use migrations):
- web_1 | - allauth.socialaccount
- web_1 | - django_extensions
- web_1 | (use ./manage.py migrate to migrate these)
- web_1 | Running migrations for socialaccount:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for socialaccount.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | Running migrations for django_extensions:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for django_extensions.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | ===================================
- web_1 | Creating "root" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "root" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "root" in API. Server responded with 404
- web_1 | ===================================
- web_1 | ===================================
- web_1 | Creating "admin" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "admin" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "admin" in API. Server responded with 404
- web_1 | ===================================
- web_1 | Starting the server
- web_1 | grunt-cli: The grunt command line interface (v1.2.0)
- web_1 |
- web_1 | Fatal error: Unable to find local grunt.
- web_1 |
- web_1 | If you're seeing this message, grunt hasn't been installed locally to
- web_1 | your project. For more information about installing and configuring grunt,
- web_1 | please see the Getting Started guide:
- web_1 |
- web_1 | http://gruntjs.com/getting-started
- web_1 | Starting OpenBSD Secure Shell server: sshd.
- web_1 | wait-for-it.sh: waiting 15 seconds for dbweb.openconceptlab.org:5432
- db_web_1 | LOG: incomplete startup packet
- web_1 | wait-for-it.sh: dbweb.openconceptlab.org:5432 is available after 0 seconds
- web_1 |
- web_1 | Host IP=172.19.0.1
- web_1 |
- web_1 | Syncing...
- web_1 | Creating tables ...
- web_1 | Installing custom SQL ...
- web_1 | Installing indexes ...
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 |
- web_1 | Synced:
- web_1 | > django.contrib.auth
- web_1 | > django.contrib.contenttypes
- web_1 | > django.contrib.sessions
- web_1 | > django.contrib.sites
- web_1 | > django.contrib.messages
- web_1 | > django.contrib.staticfiles
- web_1 | > django.contrib.admin
- web_1 | > south
- web_1 | > crispy_forms
- web_1 | > avatar
- web_1 | > bootstrap3
- web_1 | > users
- web_1 | > allauth
- web_1 | > allauth.account
- web_1 | > django.contrib.humanize
- web_1 | > debug_toolbar
- web_1 |
- web_1 | Not synced (use migrations):
- web_1 | - allauth.socialaccount
- web_1 | - django_extensions
- web_1 | (use ./manage.py migrate to migrate these)
- web_1 | Running migrations for socialaccount:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for socialaccount.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | Running migrations for django_extensions:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for django_extensions.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | ===================================
- web_1 | Creating "root" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "root" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "root" in API. Server responded with 404
- web_1 | ===================================
- web_1 | ===================================
- web_1 | Creating "admin" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "admin" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "admin" in API. Server responded with 404
- web_1 | ===================================
- web_1 | Starting the server
- web_1 | grunt-cli: The grunt command line interface (v1.2.0)
- web_1 |
- web_1 | Fatal error: Unable to find local grunt.
- web_1 |
- web_1 | If you're seeing this message, grunt hasn't been installed locally to
- web_1 | your project. For more information about installing and configuring grunt,
- web_1 | please see the Getting Started guide:
- web_1 |
- web_1 | http://gruntjs.com/getting-started
- db_web_1 | LOG: incomplete startup packet
- oclweb_web_1 exited with code 99
- web_1 | Starting OpenBSD Secure Shell server: sshd.
- web_1 | wait-for-it.sh: waiting 15 seconds for dbweb.openconceptlab.org:5432
- web_1 | wait-for-it.sh: dbweb.openconceptlab.org:5432 is available after 3 seconds
- web_1 |
- web_1 | Host IP=172.19.0.1
- web_1 |
- web_1 | Syncing...
- web_1 | Creating tables ...
- web_1 | Creating table auth_permission
- web_1 | Creating table auth_group_permissions
- web_1 | Creating table auth_group
- web_1 | Creating table django_content_type
- web_1 | Creating table django_session
- web_1 | Creating table django_site
- web_1 | Creating table django_admin_log
- web_1 | Creating table south_migrationhistory
- web_1 | Creating table avatar_avatar
- web_1 | Creating table users_user_groups
- web_1 | Creating table users_user_user_permissions
- web_1 | Creating table users_user
- web_1 | Creating table account_emailaddress
- web_1 | Creating table account_emailconfirmation
- web_1 | Installing custom SQL ...
- web_1 | Installing indexes ...
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 |
- web_1 | Synced:
- web_1 | > django.contrib.auth
- web_1 | > django.contrib.contenttypes
- web_1 | > django.contrib.sessions
- web_1 | > django.contrib.sites
- web_1 | > django.contrib.messages
- web_1 | > django.contrib.staticfiles
- web_1 | > django.contrib.admin
- web_1 | > south
- web_1 | > crispy_forms
- web_1 | > avatar
- web_1 | > bootstrap3
- web_1 | > users
- web_1 | > allauth
- web_1 | > allauth.account
- web_1 | > django.contrib.humanize
- web_1 | > debug_toolbar
- web_1 |
- web_1 | Not synced (use migrations):
- web_1 | - allauth.socialaccount
- web_1 | - django_extensions
- web_1 | (use ./manage.py migrate to migrate these)
- web_1 | Running migrations for socialaccount:
- web_1 | - Migrating forwards to 0011_auto__chg_field_socialtoken_token.
- web_1 | > socialaccount:0001_initial
- web_1 | > socialaccount:0002_genericmodels
- web_1 | > socialaccount:0003_auto__add_unique_socialaccount_uid_provider
- web_1 | > socialaccount:0004_add_sites
- web_1 | > socialaccount:0005_set_sites
- web_1 | > socialaccount:0006_auto__del_field_socialapp_site
- web_1 | > socialaccount:0007_auto__add_field_socialapp_client_id
- web_1 | > socialaccount:0008_client_id
- web_1 | > socialaccount:0009_auto__add_field_socialtoken_expires_at
- web_1 | > socialaccount:0010_auto__chg_field_socialtoken_token
- web_1 | > socialaccount:0011_auto__chg_field_socialtoken_token
- web_1 | - Loading initial data for socialaccount.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | Running migrations for django_extensions:
- web_1 | - Migrating forwards to 0001_empty.
- web_1 | > django_extensions:0001_empty
- web_1 | - Loading initial data for django_extensions.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | ===================================
- web_1 | Creating "root" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "root" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "root" in API. Server responded with 404
- web_1 | ===================================
- web_1 | ===================================
- web_1 | Creating "admin" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "admin" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "admin" in API. Server responded with 404
- web_1 | ===================================
- web_1 | Starting the server
- web_1 | grunt-cli: The grunt command line interface (v1.2.0)
- web_1 |
- web_1 | Fatal error: Unable to find local grunt.
- web_1 |
- web_1 | If you're seeing this message, grunt hasn't been installed locally to
- web_1 | your project. For more information about installing and configuring grunt,
- web_1 | please see the Getting Started guide:
- web_1 |
- web_1 | http://gruntjs.com/getting-started
- web_1 | Starting OpenBSD Secure Shell server: sshd.
- web_1 | wait-for-it.sh: waiting 15 seconds for dbweb.openconceptlab.org:5432
- web_1 | wait-for-it.sh: dbweb.openconceptlab.org:5432 is available after 0 seconds
- web_1 |
- web_1 | Host IP=172.19.0.1
- web_1 |
- web_1 | Syncing...
- web_1 | Creating tables ...
- web_1 | Installing custom SQL ...
- web_1 | Installing indexes ...
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 |
- web_1 | Synced:
- web_1 | > django.contrib.auth
- web_1 | > django.contrib.contenttypes
- web_1 | > django.contrib.sessions
- web_1 | > django.contrib.sites
- web_1 | > django.contrib.messages
- web_1 | > django.contrib.staticfiles
- web_1 | > django.contrib.admin
- web_1 | > south
- web_1 | > crispy_forms
- web_1 | > avatar
- web_1 | > bootstrap3
- web_1 | > users
- web_1 | > allauth
- web_1 | > allauth.account
- web_1 | > django.contrib.humanize
- web_1 | > debug_toolbar
- web_1 |
- web_1 | Not synced (use migrations):
- web_1 | - allauth.socialaccount
- web_1 | - django_extensions
- web_1 | (use ./manage.py migrate to migrate these)
- web_1 | Running migrations for socialaccount:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for socialaccount.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | Running migrations for django_extensions:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for django_extensions.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | ===================================
- web_1 | Creating "root" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "root" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "root" in API. Server responded with 404
- web_1 | ===================================
- web_1 | ===================================
- web_1 | Creating "admin" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "admin" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "admin" in API. Server responded with 404
- web_1 | ===================================
- web_1 | Starting the server
- web_1 | grunt-cli: The grunt command line interface (v1.2.0)
- web_1 |
- web_1 | Fatal error: Unable to find local grunt.
- web_1 |
- web_1 | If you're seeing this message, grunt hasn't been installed locally to
- web_1 | your project. For more information about installing and configuring grunt,
- web_1 | please see the Getting Started guide:
- web_1 |
- web_1 | http://gruntjs.com/getting-started
- web_1 | Starting OpenBSD Secure Shell server: sshd.
- web_1 | wait-for-it.sh: waiting 15 seconds for dbweb.openconceptlab.org:5432
- web_1 | wait-for-it.sh: dbweb.openconceptlab.org:5432 is available after 0 seconds
- web_1 |
- web_1 | Host IP=172.19.0.1
- web_1 |
- web_1 | Syncing...
- web_1 | Creating tables ...
- web_1 | Installing custom SQL ...
- web_1 | Installing indexes ...
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 |
- web_1 | Synced:
- web_1 | > django.contrib.auth
- web_1 | > django.contrib.contenttypes
- web_1 | > django.contrib.sessions
- web_1 | > django.contrib.sites
- web_1 | > django.contrib.messages
- web_1 | > django.contrib.staticfiles
- web_1 | > django.contrib.admin
- web_1 | > south
- web_1 | > crispy_forms
- web_1 | > avatar
- web_1 | > bootstrap3
- web_1 | > users
- web_1 | > allauth
- web_1 | > allauth.account
- web_1 | > django.contrib.humanize
- web_1 | > debug_toolbar
- web_1 |
- web_1 | Not synced (use migrations):
- web_1 | - allauth.socialaccount
- web_1 | - django_extensions
- web_1 | (use ./manage.py migrate to migrate these)
- web_1 | Running migrations for socialaccount:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for socialaccount.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | Running migrations for django_extensions:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for django_extensions.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | ===================================
- web_1 | Creating "root" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "root" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "root" in API. Server responded with 404
- web_1 | ===================================
- web_1 | ===================================
- web_1 | Creating "admin" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "admin" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "admin" in API. Server responded with 404
- web_1 | ===================================
- web_1 | Starting the server
- web_1 | grunt-cli: The grunt command line interface (v1.2.0)
- web_1 |
- web_1 | Fatal error: Unable to find local grunt.
- web_1 |
- web_1 | If you're seeing this message, grunt hasn't been installed locally to
- web_1 | your project. For more information about installing and configuring grunt,
- web_1 | please see the Getting Started guide:
- web_1 |
- web_1 | http://gruntjs.com/getting-started
- web_1 | Starting OpenBSD Secure Shell server: sshd.
- web_1 | wait-for-it.sh: waiting 15 seconds for dbweb.openconceptlab.org:5432
- web_1 | wait-for-it.sh: dbweb.openconceptlab.org:5432 is available after 0 seconds
- web_1 |
- web_1 | Host IP=172.19.0.1
- web_1 |
- web_1 | Syncing...
- web_1 | Creating tables ...
- web_1 | Installing custom SQL ...
- web_1 | Installing indexes ...
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 |
- web_1 | Synced:
- web_1 | > django.contrib.auth
- web_1 | > django.contrib.contenttypes
- web_1 | > django.contrib.sessions
- web_1 | > django.contrib.sites
- web_1 | > django.contrib.messages
- web_1 | > django.contrib.staticfiles
- web_1 | > django.contrib.admin
- web_1 | > south
- web_1 | > crispy_forms
- web_1 | > avatar
- web_1 | > bootstrap3
- web_1 | > users
- web_1 | > allauth
- web_1 | > allauth.account
- web_1 | > django.contrib.humanize
- web_1 | > debug_toolbar
- web_1 |
- web_1 | Not synced (use migrations):
- web_1 | - allauth.socialaccount
- web_1 | - django_extensions
- web_1 | (use ./manage.py migrate to migrate these)
- web_1 | Running migrations for socialaccount:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for socialaccount.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | Running migrations for django_extensions:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for django_extensions.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | ===================================
- web_1 | Creating "root" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "root" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "root" in API. Server responded with 404
- web_1 | ===================================
- web_1 | ===================================
- web_1 | Creating "admin" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "admin" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "admin" in API. Server responded with 404
- web_1 | ===================================
- web_1 | Starting the server
- web_1 | grunt-cli: The grunt command line interface (v1.2.0)
- web_1 |
- web_1 | Fatal error: Unable to find local grunt.
- web_1 |
- web_1 | If you're seeing this message, grunt hasn't been installed locally to
- web_1 | your project. For more information about installing and configuring grunt,
- web_1 | please see the Getting Started guide:
- web_1 |
- web_1 | http://gruntjs.com/getting-started
- web_1 | Starting OpenBSD Secure Shell server: sshd.
- web_1 | wait-for-it.sh: waiting 15 seconds for dbweb.openconceptlab.org:5432
- db_web_1 | LOG: incomplete startup packet
- web_1 | wait-for-it.sh: dbweb.openconceptlab.org:5432 is available after 0 seconds
- web_1 |
- web_1 | Host IP=172.19.0.1
- web_1 |
- web_1 | Syncing...
- web_1 | Creating tables ...
- web_1 | Installing custom SQL ...
- web_1 | Installing indexes ...
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 |
- web_1 | Synced:
- web_1 | > django.contrib.auth
- web_1 | > django.contrib.contenttypes
- web_1 | > django.contrib.sessions
- web_1 | > django.contrib.sites
- web_1 | > django.contrib.messages
- web_1 | > django.contrib.staticfiles
- web_1 | > django.contrib.admin
- web_1 | > south
- web_1 | > crispy_forms
- web_1 | > avatar
- web_1 | > bootstrap3
- web_1 | > users
- web_1 | > allauth
- web_1 | > allauth.account
- web_1 | > django.contrib.humanize
- web_1 | > debug_toolbar
- web_1 |
- web_1 | Not synced (use migrations):
- web_1 | - allauth.socialaccount
- web_1 | - django_extensions
- web_1 | (use ./manage.py migrate to migrate these)
- web_1 | Running migrations for socialaccount:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for socialaccount.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | Running migrations for django_extensions:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for django_extensions.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | ===================================
- web_1 | Creating "root" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "root" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "root" in API. Server responded with 404
- web_1 | ===================================
- web_1 | ===================================
- web_1 | Creating "admin" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "admin" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "admin" in API. Server responded with 404
- web_1 | ===================================
- web_1 | Starting the server
- web_1 | grunt-cli: The grunt command line interface (v1.2.0)
- web_1 |
- web_1 | Fatal error: Unable to find local grunt.
- web_1 |
- web_1 | If you're seeing this message, grunt hasn't been installed locally to
- web_1 | your project. For more information about installing and configuring grunt,
- web_1 | please see the Getting Started guide:
- web_1 |
- web_1 | http://gruntjs.com/getting-started
- db_web_1 | LOG: incomplete startup packet
- oclweb_web_1 exited with code 99
- web_1 | Starting OpenBSD Secure Shell server: sshd.
- web_1 | wait-for-it.sh: waiting 15 seconds for dbweb.openconceptlab.org:5432
- web_1 | wait-for-it.sh: dbweb.openconceptlab.org:5432 is available after 3 seconds
- web_1 |
- web_1 | Host IP=172.19.0.1
- web_1 |
- web_1 | Syncing...
- web_1 | Creating tables ...
- web_1 | Creating table auth_permission
- web_1 | Creating table auth_group_permissions
- web_1 | Creating table auth_group
- web_1 | Creating table django_content_type
- web_1 | Creating table django_session
- web_1 | Creating table django_site
- web_1 | Creating table django_admin_log
- web_1 | Creating table south_migrationhistory
- web_1 | Creating table avatar_avatar
- web_1 | Creating table users_user_groups
- web_1 | Creating table users_user_user_permissions
- web_1 | Creating table users_user
- web_1 | Creating table account_emailaddress
- web_1 | Creating table account_emailconfirmation
- web_1 | Installing custom SQL ...
- web_1 | Installing indexes ...
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 |
- web_1 | Synced:
- web_1 | > django.contrib.auth
- web_1 | > django.contrib.contenttypes
- web_1 | > django.contrib.sessions
- web_1 | > django.contrib.sites
- web_1 | > django.contrib.messages
- web_1 | > django.contrib.staticfiles
- web_1 | > django.contrib.admin
- web_1 | > south
- web_1 | > crispy_forms
- web_1 | > avatar
- web_1 | > bootstrap3
- web_1 | > users
- web_1 | > allauth
- web_1 | > allauth.account
- web_1 | > django.contrib.humanize
- web_1 | > debug_toolbar
- web_1 |
- web_1 | Not synced (use migrations):
- web_1 | - allauth.socialaccount
- web_1 | - django_extensions
- web_1 | (use ./manage.py migrate to migrate these)
- web_1 | Running migrations for socialaccount:
- web_1 | - Migrating forwards to 0011_auto__chg_field_socialtoken_token.
- web_1 | > socialaccount:0001_initial
- web_1 | > socialaccount:0002_genericmodels
- web_1 | > socialaccount:0003_auto__add_unique_socialaccount_uid_provider
- web_1 | > socialaccount:0004_add_sites
- web_1 | > socialaccount:0005_set_sites
- web_1 | > socialaccount:0006_auto__del_field_socialapp_site
- web_1 | > socialaccount:0007_auto__add_field_socialapp_client_id
- web_1 | > socialaccount:0008_client_id
- web_1 | > socialaccount:0009_auto__add_field_socialtoken_expires_at
- web_1 | > socialaccount:0010_auto__chg_field_socialtoken_token
- web_1 | > socialaccount:0011_auto__chg_field_socialtoken_token
- web_1 | - Loading initial data for socialaccount.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | Running migrations for django_extensions:
- web_1 | - Migrating forwards to 0001_empty.
- web_1 | > django_extensions:0001_empty
- web_1 | - Loading initial data for django_extensions.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | ===================================
- web_1 | Creating "root" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "root" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "root" in API. Server responded with 404
- web_1 | ===================================
- web_1 | ===================================
- web_1 | Creating "admin" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "admin" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "admin" in API. Server responded with 404
- web_1 | ===================================
- web_1 | Starting the server
- web_1 | grunt-cli: The grunt command line interface (v1.2.0)
- web_1 |
- web_1 | Fatal error: Unable to find local grunt.
- web_1 |
- web_1 | If you're seeing this message, grunt hasn't been installed locally to
- web_1 | your project. For more information about installing and configuring grunt,
- web_1 | please see the Getting Started guide:
- web_1 |
- web_1 | http://gruntjs.com/getting-started
- web_1 | Starting OpenBSD Secure Shell server: sshd.
- web_1 | wait-for-it.sh: waiting 15 seconds for dbweb.openconceptlab.org:5432
- web_1 | wait-for-it.sh: dbweb.openconceptlab.org:5432 is available after 0 seconds
- web_1 |
- web_1 | Host IP=172.19.0.1
- web_1 |
- web_1 | Syncing...
- web_1 | Creating tables ...
- web_1 | Installing custom SQL ...
- web_1 | Installing indexes ...
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 |
- web_1 | Synced:
- web_1 | > django.contrib.auth
- web_1 | > django.contrib.contenttypes
- web_1 | > django.contrib.sessions
- web_1 | > django.contrib.sites
- web_1 | > django.contrib.messages
- web_1 | > django.contrib.staticfiles
- web_1 | > django.contrib.admin
- web_1 | > south
- web_1 | > crispy_forms
- web_1 | > avatar
- web_1 | > bootstrap3
- web_1 | > users
- web_1 | > allauth
- web_1 | > allauth.account
- web_1 | > django.contrib.humanize
- web_1 | > debug_toolbar
- web_1 |
- web_1 | Not synced (use migrations):
- web_1 | - allauth.socialaccount
- web_1 | - django_extensions
- web_1 | (use ./manage.py migrate to migrate these)
- web_1 | Running migrations for socialaccount:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for socialaccount.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | Running migrations for django_extensions:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for django_extensions.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | ===================================
- web_1 | Creating "root" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "root" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "root" in API. Server responded with 404
- web_1 | ===================================
- web_1 | ===================================
- web_1 | Creating "admin" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "admin" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "admin" in API. Server responded with 404
- web_1 | ===================================
- web_1 | Starting the server
- web_1 | grunt-cli: The grunt command line interface (v1.2.0)
- web_1 |
- web_1 | Fatal error: Unable to find local grunt.
- web_1 |
- web_1 | If you're seeing this message, grunt hasn't been installed locally to
- web_1 | your project. For more information about installing and configuring grunt,
- web_1 | please see the Getting Started guide:
- web_1 |
- web_1 | http://gruntjs.com/getting-started
- web_1 | Starting OpenBSD Secure Shell server: sshd.
- web_1 | wait-for-it.sh: waiting 15 seconds for dbweb.openconceptlab.org:5432
- web_1 | wait-for-it.sh: dbweb.openconceptlab.org:5432 is available after 0 seconds
- web_1 |
- web_1 | Host IP=172.19.0.1
- web_1 |
- web_1 | Syncing...
- web_1 | Creating tables ...
- web_1 | Installing custom SQL ...
- web_1 | Installing indexes ...
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 |
- web_1 | Synced:
- web_1 | > django.contrib.auth
- web_1 | > django.contrib.contenttypes
- web_1 | > django.contrib.sessions
- web_1 | > django.contrib.sites
- web_1 | > django.contrib.messages
- web_1 | > django.contrib.staticfiles
- web_1 | > django.contrib.admin
- web_1 | > south
- web_1 | > crispy_forms
- web_1 | > avatar
- web_1 | > bootstrap3
- web_1 | > users
- web_1 | > allauth
- web_1 | > allauth.account
- web_1 | > django.contrib.humanize
- web_1 | > debug_toolbar
- web_1 |
- web_1 | Not synced (use migrations):
- web_1 | - allauth.socialaccount
- web_1 | - django_extensions
- web_1 | (use ./manage.py migrate to migrate these)
- web_1 | Running migrations for socialaccount:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for socialaccount.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | Running migrations for django_extensions:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for django_extensions.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | ===================================
- web_1 | Creating "root" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "root" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "root" in API. Server responded with 404
- web_1 | ===================================
- web_1 | ===================================
- web_1 | Creating "admin" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "admin" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "admin" in API. Server responded with 404
- web_1 | ===================================
- web_1 | Starting the server
- web_1 | grunt-cli: The grunt command line interface (v1.2.0)
- web_1 |
- web_1 | Fatal error: Unable to find local grunt.
- web_1 |
- web_1 | If you're seeing this message, grunt hasn't been installed locally to
- web_1 | your project. For more information about installing and configuring grunt,
- web_1 | please see the Getting Started guide:
- web_1 |
- web_1 | http://gruntjs.com/getting-started
- web_1 | Starting OpenBSD Secure Shell server: sshd.
- web_1 | wait-for-it.sh: waiting 15 seconds for dbweb.openconceptlab.org:5432
- web_1 | wait-for-it.sh: dbweb.openconceptlab.org:5432 is available after 0 seconds
- web_1 |
- web_1 | Host IP=172.19.0.1
- web_1 |
- web_1 | Syncing...
- web_1 | Creating tables ...
- web_1 | Installing custom SQL ...
- web_1 | Installing indexes ...
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 |
- web_1 | Synced:
- web_1 | > django.contrib.auth
- web_1 | > django.contrib.contenttypes
- web_1 | > django.contrib.sessions
- web_1 | > django.contrib.sites
- web_1 | > django.contrib.messages
- web_1 | > django.contrib.staticfiles
- web_1 | > django.contrib.admin
- web_1 | > south
- web_1 | > crispy_forms
- web_1 | > avatar
- web_1 | > bootstrap3
- web_1 | > users
- web_1 | > allauth
- web_1 | > allauth.account
- web_1 | > django.contrib.humanize
- web_1 | > debug_toolbar
- web_1 |
- web_1 | Not synced (use migrations):
- web_1 | - allauth.socialaccount
- web_1 | - django_extensions
- web_1 | (use ./manage.py migrate to migrate these)
- web_1 | Running migrations for socialaccount:
- web_1 | - Nothing to migrate.
- db_web_1 | LOG: incomplete startup packet
- web_1 | - Loading initial data for socialaccount.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | Running migrations for django_extensions:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for django_extensions.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | ===================================
- web_1 | Creating "root" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "root" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "root" in API. Server responded with 404
- web_1 | ===================================
- web_1 | ===================================
- web_1 | Creating "admin" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "admin" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "admin" in API. Server responded with 404
- web_1 | ===================================
- web_1 | Starting the server
- web_1 | grunt-cli: The grunt command line interface (v1.2.0)
- web_1 |
- web_1 | Fatal error: Unable to find local grunt.
- web_1 |
- web_1 | If you're seeing this message, grunt hasn't been installed locally to
- web_1 | your project. For more information about installing and configuring grunt,
- web_1 | please see the Getting Started guide:
- web_1 |
- web_1 | http://gruntjs.com/getting-started
- web_1 | Starting OpenBSD Secure Shell server: sshd.
- web_1 | wait-for-it.sh: waiting 15 seconds for dbweb.openconceptlab.org:5432
- web_1 | wait-for-it.sh: dbweb.openconceptlab.org:5432 is available after 0 seconds
- web_1 |
- web_1 | Host IP=172.19.0.1
- web_1 |
- web_1 | Syncing...
- web_1 | Creating tables ...
- web_1 | Installing custom SQL ...
- web_1 | Installing indexes ...
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 |
- web_1 | Synced:
- web_1 | > django.contrib.auth
- web_1 | > django.contrib.contenttypes
- web_1 | > django.contrib.sessions
- web_1 | > django.contrib.sites
- web_1 | > django.contrib.messages
- web_1 | > django.contrib.staticfiles
- web_1 | > django.contrib.admin
- web_1 | > south
- web_1 | > crispy_forms
- web_1 | > avatar
- web_1 | > bootstrap3
- web_1 | > users
- web_1 | > allauth
- web_1 | > allauth.account
- web_1 | > django.contrib.humanize
- web_1 | > debug_toolbar
- web_1 |
- web_1 | Not synced (use migrations):
- web_1 | - allauth.socialaccount
- web_1 | - django_extensions
- web_1 | (use ./manage.py migrate to migrate these)
- web_1 | Running migrations for socialaccount:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for socialaccount.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | Running migrations for django_extensions:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for django_extensions.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | ===================================
- web_1 | Creating "root" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "root" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "root" in API. Server responded with 404
- web_1 | ===================================
- web_1 | ===================================
- web_1 | Creating "admin" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "admin" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "admin" in API. Server responded with 404
- web_1 | ===================================
- web_1 | Starting the server
- web_1 | grunt-cli: The grunt command line interface (v1.2.0)
- web_1 |
- web_1 | Fatal error: Unable to find local grunt.
- web_1 |
- web_1 | If you're seeing this message, grunt hasn't been installed locally to
- web_1 | your project. For more information about installing and configuring grunt,
- web_1 | please see the Getting Started guide:
- web_1 |
- web_1 | http://gruntjs.com/getting-started
- web_1 | Starting OpenBSD Secure Shell server: sshd.
- web_1 | wait-for-it.sh: waiting 15 seconds for dbweb.openconceptlab.org:5432
- web_1 | wait-for-it.sh: dbweb.openconceptlab.org:5432 is available after 0 seconds
- web_1 |
- web_1 | Host IP=172.19.0.1
- web_1 |
- web_1 | Syncing...
- web_1 | Creating tables ...
- web_1 | Installing custom SQL ...
- web_1 | Installing indexes ...
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 |
- web_1 | Synced:
- web_1 | > django.contrib.auth
- web_1 | > django.contrib.contenttypes
- web_1 | > django.contrib.sessions
- web_1 | > django.contrib.sites
- web_1 | > django.contrib.messages
- web_1 | > django.contrib.staticfiles
- web_1 | > django.contrib.admin
- web_1 | > south
- web_1 | > crispy_forms
- web_1 | > avatar
- web_1 | > bootstrap3
- web_1 | > users
- web_1 | > allauth
- web_1 | > allauth.account
- web_1 | > django.contrib.humanize
- web_1 | > debug_toolbar
- web_1 |
- web_1 | Not synced (use migrations):
- web_1 | - allauth.socialaccount
- web_1 | - django_extensions
- web_1 | (use ./manage.py migrate to migrate these)
- web_1 | Running migrations for socialaccount:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for socialaccount.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | Running migrations for django_extensions:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for django_extensions.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | ===================================
- web_1 | Creating "root" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "root" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "root" in API. Server responded with 404
- web_1 | ===================================
- web_1 | ===================================
- web_1 | Creating "admin" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "admin" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "admin" in API. Server responded with 404
- web_1 | ===================================
- web_1 | Starting the server
- web_1 | grunt-cli: The grunt command line interface (v1.2.0)
- web_1 |
- web_1 | Fatal error: Unable to find local grunt.
- web_1 |
- web_1 | If you're seeing this message, grunt hasn't been installed locally to
- web_1 | your project. For more information about installing and configuring grunt,
- web_1 | please see the Getting Started guide:
- web_1 |
- web_1 | http://gruntjs.com/getting-started
- web_1 | Starting OpenBSD Secure Shell server: sshd.
- web_1 | wait-for-it.sh: waiting 15 seconds for dbweb.openconceptlab.org:5432
- web_1 | wait-for-it.sh: dbweb.openconceptlab.org:5432 is available after 0 seconds
- web_1 |
- web_1 | Host IP=172.19.0.1
- web_1 |
- web_1 | Syncing...
- web_1 | Creating tables ...
- web_1 | Installing custom SQL ...
- web_1 | Installing indexes ...
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 |
- web_1 | Synced:
- web_1 | > django.contrib.auth
- web_1 | > django.contrib.contenttypes
- web_1 | > django.contrib.sessions
- web_1 | > django.contrib.sites
- web_1 | > django.contrib.messages
- web_1 | > django.contrib.staticfiles
- web_1 | > django.contrib.admin
- web_1 | > south
- web_1 | > crispy_forms
- web_1 | > avatar
- web_1 | > bootstrap3
- web_1 | > users
- web_1 | > allauth
- web_1 | > allauth.account
- web_1 | > django.contrib.humanize
- web_1 | > debug_toolbar
- web_1 |
- web_1 | Not synced (use migrations):
- web_1 | - allauth.socialaccount
- web_1 | - django_extensions
- web_1 | (use ./manage.py migrate to migrate these)
- web_1 | Running migrations for socialaccount:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for socialaccount.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | Running migrations for django_extensions:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for django_extensions.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | ===================================
- web_1 | Creating "root" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "root" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "root" in API. Server responded with 404
- web_1 | ===================================
- web_1 | ===================================
- web_1 | Creating "admin" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "admin" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "admin" in API. Server responded with 404
- web_1 | ===================================
- web_1 | Starting the server
- web_1 | grunt-cli: The grunt command line interface (v1.2.0)
- web_1 |
- web_1 | Fatal error: Unable to find local grunt.
- web_1 |
- web_1 | If you're seeing this message, grunt hasn't been installed locally to
- web_1 | your project. For more information about installing and configuring grunt,
- web_1 | please see the Getting Started guide:
- web_1 |
- web_1 | http://gruntjs.com/getting-started
- db_web_1 | LOG: incomplete startup packet
- oclweb_web_1 exited with code 99
- web_1 | Starting OpenBSD Secure Shell server: sshd.
- web_1 | wait-for-it.sh: waiting 15 seconds for dbweb.openconceptlab.org:5432
- web_1 | wait-for-it.sh: dbweb.openconceptlab.org:5432 is available after 3 seconds
- web_1 |
- web_1 | Host IP=172.19.0.1
- web_1 |
- web_1 | Syncing...
- web_1 | Creating tables ...
- web_1 | Creating table auth_permission
- web_1 | Creating table auth_group_permissions
- web_1 | Creating table auth_group
- web_1 | Creating table django_content_type
- web_1 | Creating table django_session
- web_1 | Creating table django_site
- web_1 | Creating table django_admin_log
- web_1 | Creating table south_migrationhistory
- web_1 | Creating table avatar_avatar
- web_1 | Creating table users_user_groups
- web_1 | Creating table users_user_user_permissions
- web_1 | Creating table users_user
- web_1 | Creating table account_emailaddress
- web_1 | Creating table account_emailconfirmation
- web_1 | Installing custom SQL ...
- web_1 | Installing indexes ...
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 |
- web_1 | Synced:
- web_1 | > django.contrib.auth
- web_1 | > django.contrib.contenttypes
- web_1 | > django.contrib.sessions
- web_1 | > django.contrib.sites
- web_1 | > django.contrib.messages
- web_1 | > django.contrib.staticfiles
- web_1 | > django.contrib.admin
- web_1 | > south
- web_1 | > crispy_forms
- web_1 | > avatar
- web_1 | > bootstrap3
- web_1 | > users
- web_1 | > allauth
- web_1 | > allauth.account
- web_1 | > django.contrib.humanize
- web_1 | > debug_toolbar
- web_1 |
- web_1 | Not synced (use migrations):
- web_1 | - allauth.socialaccount
- web_1 | - django_extensions
- web_1 | (use ./manage.py migrate to migrate these)
- web_1 | Running migrations for socialaccount:
- web_1 | - Migrating forwards to 0011_auto__chg_field_socialtoken_token.
- web_1 | > socialaccount:0001_initial
- web_1 | > socialaccount:0002_genericmodels
- web_1 | > socialaccount:0003_auto__add_unique_socialaccount_uid_provider
- web_1 | > socialaccount:0004_add_sites
- web_1 | > socialaccount:0005_set_sites
- web_1 | > socialaccount:0006_auto__del_field_socialapp_site
- web_1 | > socialaccount:0007_auto__add_field_socialapp_client_id
- web_1 | > socialaccount:0008_client_id
- web_1 | > socialaccount:0009_auto__add_field_socialtoken_expires_at
- web_1 | > socialaccount:0010_auto__chg_field_socialtoken_token
- web_1 | > socialaccount:0011_auto__chg_field_socialtoken_token
- web_1 | - Loading initial data for socialaccount.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | Running migrations for django_extensions:
- web_1 | - Migrating forwards to 0001_empty.
- web_1 | > django_extensions:0001_empty
- web_1 | - Loading initial data for django_extensions.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | ===================================
- web_1 | Creating "root" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "root" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "root" in API. Server responded with 404
- web_1 | ===================================
- web_1 | ===================================
- web_1 | Creating "admin" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "admin" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "admin" in API. Server responded with 404
- web_1 | ===================================
- web_1 | Starting the server
- web_1 | grunt-cli: The grunt command line interface (v1.2.0)
- web_1 |
- web_1 | Fatal error: Unable to find local grunt.
- web_1 |
- web_1 | If you're seeing this message, grunt hasn't been installed locally to
- web_1 | your project. For more information about installing and configuring grunt,
- web_1 | please see the Getting Started guide:
- web_1 |
- web_1 | http://gruntjs.com/getting-started
- web_1 | Starting OpenBSD Secure Shell server: sshd.
- web_1 | wait-for-it.sh: waiting 15 seconds for dbweb.openconceptlab.org:5432
- web_1 | wait-for-it.sh: dbweb.openconceptlab.org:5432 is available after 0 seconds
- web_1 |
- web_1 | Host IP=172.19.0.1
- web_1 |
- web_1 | Syncing...
- web_1 | Creating tables ...
- web_1 | Installing custom SQL ...
- web_1 | Installing indexes ...
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 |
- web_1 | Synced:
- web_1 | > django.contrib.auth
- web_1 | > django.contrib.contenttypes
- web_1 | > django.contrib.sessions
- web_1 | > django.contrib.sites
- web_1 | > django.contrib.messages
- web_1 | > django.contrib.staticfiles
- web_1 | > django.contrib.admin
- web_1 | > south
- web_1 | > crispy_forms
- web_1 | > avatar
- web_1 | > bootstrap3
- web_1 | > users
- web_1 | > allauth
- web_1 | > allauth.account
- web_1 | > django.contrib.humanize
- web_1 | > debug_toolbar
- web_1 |
- web_1 | Not synced (use migrations):
- web_1 | - allauth.socialaccount
- web_1 | - django_extensions
- web_1 | (use ./manage.py migrate to migrate these)
- web_1 | Running migrations for socialaccount:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for socialaccount.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | Running migrations for django_extensions:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for django_extensions.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | ===================================
- web_1 | Creating "root" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "root" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "root" in API. Server responded with 404
- web_1 | ===================================
- web_1 | ===================================
- web_1 | Creating "admin" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "admin" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "admin" in API. Server responded with 404
- web_1 | ===================================
- web_1 | Starting the server
- web_1 | grunt-cli: The grunt command line interface (v1.2.0)
- web_1 |
- web_1 | Fatal error: Unable to find local grunt.
- web_1 |
- web_1 | If you're seeing this message, grunt hasn't been installed locally to
- web_1 | your project. For more information about installing and configuring grunt,
- web_1 | please see the Getting Started guide:
- web_1 |
- web_1 | http://gruntjs.com/getting-started
- web_1 | Starting OpenBSD Secure Shell server: sshd.
- web_1 | wait-for-it.sh: waiting 15 seconds for dbweb.openconceptlab.org:5432
- web_1 | wait-for-it.sh: dbweb.openconceptlab.org:5432 is available after 0 seconds
- web_1 |
- web_1 | Host IP=172.19.0.1
- web_1 |
- web_1 | Syncing...
- web_1 | Creating tables ...
- web_1 | Installing custom SQL ...
- web_1 | Installing indexes ...
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 |
- web_1 | Synced:
- web_1 | > django.contrib.auth
- web_1 | > django.contrib.contenttypes
- web_1 | > django.contrib.sessions
- web_1 | > django.contrib.sites
- web_1 | > django.contrib.messages
- web_1 | > django.contrib.staticfiles
- web_1 | > django.contrib.admin
- web_1 | > south
- web_1 | > crispy_forms
- web_1 | > avatar
- web_1 | > bootstrap3
- web_1 | > users
- web_1 | > allauth
- web_1 | > allauth.account
- web_1 | > django.contrib.humanize
- web_1 | > debug_toolbar
- web_1 |
- web_1 | Not synced (use migrations):
- web_1 | - allauth.socialaccount
- web_1 | - django_extensions
- web_1 | (use ./manage.py migrate to migrate these)
- web_1 | Running migrations for socialaccount:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for socialaccount.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | Running migrations for django_extensions:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for django_extensions.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | ===================================
- web_1 | Creating "root" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "root" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "root" in API. Server responded with 404
- web_1 | ===================================
- web_1 | ===================================
- web_1 | Creating "admin" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "admin" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "admin" in API. Server responded with 404
- web_1 | ===================================
- web_1 | Starting the server
- web_1 | grunt-cli: The grunt command line interface (v1.2.0)
- web_1 |
- web_1 | Fatal error: Unable to find local grunt.
- web_1 |
- web_1 | If you're seeing this message, grunt hasn't been installed locally to
- web_1 | your project. For more information about installing and configuring grunt,
- web_1 | please see the Getting Started guide:
- web_1 |
- web_1 | http://gruntjs.com/getting-started
- web_1 | Starting OpenBSD Secure Shell server: sshd.
- web_1 | wait-for-it.sh: waiting 15 seconds for dbweb.openconceptlab.org:5432
- web_1 | wait-for-it.sh: dbweb.openconceptlab.org:5432 is available after 0 seconds
- web_1 |
- web_1 | Host IP=172.19.0.1
- web_1 |
- web_1 | Syncing...
- web_1 | Creating tables ...
- web_1 | Installing custom SQL ...
- web_1 | Installing indexes ...
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 |
- web_1 | Synced:
- web_1 | > django.contrib.auth
- web_1 | > django.contrib.contenttypes
- web_1 | > django.contrib.sessions
- web_1 | > django.contrib.sites
- web_1 | > django.contrib.messages
- web_1 | > django.contrib.staticfiles
- web_1 | > django.contrib.admin
- web_1 | > south
- web_1 | > crispy_forms
- web_1 | > avatar
- web_1 | > bootstrap3
- web_1 | > users
- web_1 | > allauth
- web_1 | > allauth.account
- web_1 | > django.contrib.humanize
- web_1 | > debug_toolbar
- web_1 |
- web_1 | Not synced (use migrations):
- web_1 | - allauth.socialaccount
- web_1 | - django_extensions
- web_1 | (use ./manage.py migrate to migrate these)
- web_1 | Running migrations for socialaccount:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for socialaccount.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | Running migrations for django_extensions:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for django_extensions.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | ===================================
- web_1 | Creating "root" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "root" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "root" in API. Server responded with 404
- web_1 | ===================================
- web_1 | ===================================
- web_1 | Creating "admin" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "admin" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "admin" in API. Server responded with 404
- web_1 | ===================================
- web_1 | Starting the server
- web_1 | grunt-cli: The grunt command line interface (v1.2.0)
- web_1 |
- web_1 | Fatal error: Unable to find local grunt.
- web_1 |
- web_1 | If you're seeing this message, grunt hasn't been installed locally to
- web_1 | your project. For more information about installing and configuring grunt,
- web_1 | please see the Getting Started guide:
- web_1 |
- web_1 | http://gruntjs.com/getting-started
- web_1 | Starting OpenBSD Secure Shell server: sshd.
- web_1 | wait-for-it.sh: waiting 15 seconds for dbweb.openconceptlab.org:5432
- web_1 | wait-for-it.sh: dbweb.openconceptlab.org:5432 is available after 0 seconds
- web_1 |
- web_1 | Host IP=172.19.0.1
- web_1 |
- web_1 | Syncing...
- web_1 | Creating tables ...
- web_1 | Installing custom SQL ...
- web_1 | Installing indexes ...
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 |
- web_1 | Synced:
- web_1 | > django.contrib.auth
- web_1 | > django.contrib.contenttypes
- web_1 | > django.contrib.sessions
- web_1 | > django.contrib.sites
- web_1 | > django.contrib.messages
- web_1 | > django.contrib.staticfiles
- web_1 | > django.contrib.admin
- web_1 | > south
- web_1 | > crispy_forms
- web_1 | > avatar
- web_1 | > bootstrap3
- web_1 | > users
- web_1 | > allauth
- web_1 | > allauth.account
- web_1 | > django.contrib.humanize
- web_1 | > debug_toolbar
- web_1 |
- web_1 | Not synced (use migrations):
- web_1 | - allauth.socialaccount
- web_1 | - django_extensions
- web_1 | (use ./manage.py migrate to migrate these)
- web_1 | Running migrations for socialaccount:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for socialaccount.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | Running migrations for django_extensions:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for django_extensions.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | ===================================
- web_1 | Creating "root" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "root" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "root" in API. Server responded with 404
- web_1 | ===================================
- web_1 | ===================================
- web_1 | Creating "admin" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "admin" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "admin" in API. Server responded with 404
- web_1 | ===================================
- web_1 | Starting the server
- web_1 | grunt-cli: The grunt command line interface (v1.2.0)
- web_1 |
- web_1 | Fatal error: Unable to find local grunt.
- web_1 |
- web_1 | If you're seeing this message, grunt hasn't been installed locally to
- web_1 | your project. For more information about installing and configuring grunt,
- web_1 | please see the Getting Started guide:
- web_1 |
- web_1 | http://gruntjs.com/getting-started
- web_1 | Starting OpenBSD Secure Shell server: sshd.
- web_1 | wait-for-it.sh: waiting 15 seconds for dbweb.openconceptlab.org:5432
- web_1 | wait-for-it.sh: dbweb.openconceptlab.org:5432 is available after 0 seconds
- web_1 |
- web_1 | Host IP=172.19.0.1
- web_1 |
- web_1 | Syncing...
- web_1 | Creating tables ...
- web_1 | Installing custom SQL ...
- web_1 | Installing indexes ...
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 |
- web_1 | Synced:
- web_1 | > django.contrib.auth
- web_1 | > django.contrib.contenttypes
- web_1 | > django.contrib.sessions
- web_1 | > django.contrib.sites
- web_1 | > django.contrib.messages
- web_1 | > django.contrib.staticfiles
- web_1 | > django.contrib.admin
- web_1 | > south
- web_1 | > crispy_forms
- web_1 | > avatar
- web_1 | > bootstrap3
- web_1 | > users
- web_1 | > allauth
- web_1 | > allauth.account
- web_1 | > django.contrib.humanize
- web_1 | > debug_toolbar
- web_1 |
- web_1 | Not synced (use migrations):
- web_1 | - allauth.socialaccount
- web_1 | - django_extensions
- web_1 | (use ./manage.py migrate to migrate these)
- web_1 | Running migrations for socialaccount:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for socialaccount.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | Running migrations for django_extensions:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for django_extensions.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- db_web_1 | LOG: incomplete startup packet
- web_1 | ===================================
- web_1 | Creating "root" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "root" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "root" in API. Server responded with 404
- web_1 | ===================================
- web_1 | ===================================
- web_1 | Creating "admin" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "admin" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "admin" in API. Server responded with 404
- web_1 | ===================================
- web_1 | Starting the server
- web_1 | grunt-cli: The grunt command line interface (v1.2.0)
- web_1 |
- web_1 | Fatal error: Unable to find local grunt.
- web_1 |
- web_1 | If you're seeing this message, grunt hasn't been installed locally to
- web_1 | your project. For more information about installing and configuring grunt,
- web_1 | please see the Getting Started guide:
- web_1 |
- web_1 | http://gruntjs.com/getting-started
- web_1 | Starting OpenBSD Secure Shell server: sshd.
- web_1 | wait-for-it.sh: waiting 15 seconds for dbweb.openconceptlab.org:5432
- web_1 | wait-for-it.sh: dbweb.openconceptlab.org:5432 is available after 0 seconds
- web_1 |
- web_1 | Host IP=172.19.0.1
- web_1 |
- web_1 | Syncing...
- web_1 | Creating tables ...
- web_1 | Installing custom SQL ...
- web_1 | Installing indexes ...
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 |
- web_1 | Synced:
- web_1 | > django.contrib.auth
- web_1 | > django.contrib.contenttypes
- web_1 | > django.contrib.sessions
- web_1 | > django.contrib.sites
- web_1 | > django.contrib.messages
- web_1 | > django.contrib.staticfiles
- web_1 | > django.contrib.admin
- web_1 | > south
- web_1 | > crispy_forms
- web_1 | > avatar
- web_1 | > bootstrap3
- web_1 | > users
- web_1 | > allauth
- web_1 | > allauth.account
- web_1 | > django.contrib.humanize
- web_1 | > debug_toolbar
- web_1 |
- web_1 | Not synced (use migrations):
- web_1 | - allauth.socialaccount
- web_1 | - django_extensions
- web_1 | (use ./manage.py migrate to migrate these)
- web_1 | Running migrations for socialaccount:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for socialaccount.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | Running migrations for django_extensions:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for django_extensions.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | ===================================
- web_1 | Creating "root" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "root" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "root" in API. Server responded with 404
- web_1 | ===================================
- web_1 | ===================================
- web_1 | Creating "admin" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "admin" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "admin" in API. Server responded with 404
- web_1 | ===================================
- web_1 | Starting the server
- web_1 | grunt-cli: The grunt command line interface (v1.2.0)
- web_1 |
- web_1 | Fatal error: Unable to find local grunt.
- web_1 |
- web_1 | If you're seeing this message, grunt hasn't been installed locally to
- web_1 | your project. For more information about installing and configuring grunt,
- web_1 | please see the Getting Started guide:
- web_1 |
- web_1 | http://gruntjs.com/getting-started
- web_1 | Starting OpenBSD Secure Shell server: sshd.
- web_1 | wait-for-it.sh: waiting 15 seconds for dbweb.openconceptlab.org:5432
- web_1 | wait-for-it.sh: dbweb.openconceptlab.org:5432 is available after 0 seconds
- web_1 |
- web_1 | Host IP=172.19.0.1
- web_1 |
- web_1 | Syncing...
- web_1 | Creating tables ...
- web_1 | Installing custom SQL ...
- web_1 | Installing indexes ...
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 |
- web_1 | Synced:
- web_1 | > django.contrib.auth
- web_1 | > django.contrib.contenttypes
- web_1 | > django.contrib.sessions
- web_1 | > django.contrib.sites
- web_1 | > django.contrib.messages
- web_1 | > django.contrib.staticfiles
- web_1 | > django.contrib.admin
- web_1 | > south
- web_1 | > crispy_forms
- web_1 | > avatar
- web_1 | > bootstrap3
- web_1 | > users
- web_1 | > allauth
- web_1 | > allauth.account
- web_1 | > django.contrib.humanize
- web_1 | > debug_toolbar
- web_1 |
- web_1 | Not synced (use migrations):
- web_1 | - allauth.socialaccount
- web_1 | - django_extensions
- web_1 | (use ./manage.py migrate to migrate these)
- web_1 | Running migrations for socialaccount:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for socialaccount.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | Running migrations for django_extensions:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for django_extensions.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | ===================================
- web_1 | Creating "root" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "root" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "root" in API. Server responded with 404
- web_1 | ===================================
- web_1 | ===================================
- web_1 | Creating "admin" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "admin" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "admin" in API. Server responded with 404
- web_1 | ===================================
- web_1 | Starting the server
- web_1 | grunt-cli: The grunt command line interface (v1.2.0)
- web_1 |
- web_1 | Fatal error: Unable to find local grunt.
- web_1 |
- web_1 | If you're seeing this message, grunt hasn't been installed locally to
- web_1 | your project. For more information about installing and configuring grunt,
- web_1 | please see the Getting Started guide:
- web_1 |
- web_1 | http://gruntjs.com/getting-started
- web_1 | Starting OpenBSD Secure Shell server: sshd.
- web_1 | wait-for-it.sh: waiting 15 seconds for dbweb.openconceptlab.org:5432
- web_1 | wait-for-it.sh: dbweb.openconceptlab.org:5432 is available after 0 seconds
- web_1 |
- web_1 | Host IP=172.19.0.1
- web_1 |
- web_1 | Syncing...
- web_1 | Creating tables ...
- web_1 | Installing custom SQL ...
- web_1 | Installing indexes ...
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 |
- web_1 | Synced:
- web_1 | > django.contrib.auth
- web_1 | > django.contrib.contenttypes
- web_1 | > django.contrib.sessions
- web_1 | > django.contrib.sites
- web_1 | > django.contrib.messages
- web_1 | > django.contrib.staticfiles
- web_1 | > django.contrib.admin
- web_1 | > south
- web_1 | > crispy_forms
- web_1 | > avatar
- web_1 | > bootstrap3
- web_1 | > users
- web_1 | > allauth
- web_1 | > allauth.account
- web_1 | > django.contrib.humanize
- web_1 | > debug_toolbar
- web_1 |
- web_1 | Not synced (use migrations):
- web_1 | - allauth.socialaccount
- web_1 | - django_extensions
- web_1 | (use ./manage.py migrate to migrate these)
- web_1 | Running migrations for socialaccount:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for socialaccount.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | Running migrations for django_extensions:
- web_1 | - Nothing to migrate.
- web_1 | - Loading initial data for django_extensions.
- web_1 | Installed 0 object(s) from 0 fixture(s)
- web_1 | ===================================
- web_1 | Creating "root" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "root" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "root" in API. Server responded with 404
- web_1 | ===================================
- web_1 | ===================================
- web_1 | Creating "admin" User
- web_1 | 891b4b17feab99f3ff7e5b5d04ccc5da7aa96da6
- web_1 | User "admin" exists in API, trying to reactivate...
- web_1 | Failed to reactivate user "admin" in API. Server responded with 404
- web_1 | ===================================
- web_1 | Starting the server
- web_1 | grunt-cli: The grunt command line interface (v1.2.0)
- web_1 |
- web_1 | Fatal error: Unable to find local grunt.
- web_1 |
- web_1 | If you're seeing this message, grunt hasn't been installed locally to
- web_1 | your project. For more information about installing and configuring grunt,
- web_1 | please see the Getting Started guide:
- web_1 |
- web_1 | http://gruntjs.com/getting-started
- db_web_1 | LOG: incomplete startup packet
- oclweb_web_1 exited with code 99
- Killing oclweb_web_1 ... done
- Killing oclweb_db_web_1 ... done
- $ docker-compose down -v
- Removing oclweb_web_1 ... done
- Removing oclweb_db_web_1 ... done
- Removing network oclweb_default
- Removing volume oclweb_db_web_data
- $
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement