diff --git a/docker/ckan/plugins/ckan_plugins.json b/docker/ckan/plugins/ckan_plugins.json index d0260b5..65baac4 100644 --- a/docker/ckan/plugins/ckan_plugins.json +++ b/docker/ckan/plugins/ckan_plugins.json @@ -15,7 +15,7 @@ "owner": "TNRIS", "repo": "ckanext-twdh_schema", "tag": "", - "branch": "bb-dev-scheming-3.0", + "branch": "bb-dev", "cmd": ["pip install -e .", "pip install -r requirements.txt"] }, { @@ -127,8 +127,8 @@ { "owner": "TNRIS", "repo": "ckanext-check-link", - "tag": "TWDHv0.4.0.rc1", - "branch": "", + "tag": "", + "branch": "bb-dev", "cmd": ["python setup.py install", "pip install -r dev-requirements.txt"] }, { diff --git a/docker/ckan/setup/app/start_ckan.sh b/docker/ckan/setup/app/start_ckan.sh index fee6dad..c246079 100755 --- a/docker/ckan/setup/app/start_ckan.sh +++ b/docker/ckan/setup/app/start_ckan.sh @@ -13,7 +13,7 @@ then fi # Set the common uwsgi options -UWSGI_OPTS="--socket /tmp/uwsgi.sock --uid ckan --gid ckan --http :5000 --master --enable-threads --wsgi-file /srv/app/wsgi.py --module wsgi:application --lazy-apps --gevent 2000 -p 2 -L --gevent-early-monkey-patch --vacuum --harakiri 50 --callable application" +UWSGI_OPTS="-b 65535 --socket /tmp/uwsgi.sock --uid ckan --gid ckan --http :5000 --master --enable-threads --wsgi-file /srv/app/wsgi.py --module wsgi:application --lazy-apps --gevent 2000 -p 2 -L --gevent-early-monkey-patch --vacuum --harakiri 50 --callable application" # Run the prerun script to init CKAN and create the default admin user python prerun.py || { echo '[CKAN prerun] FAILED. Exiting...' ; exit 1; }