Sign inSign up

gmtscience/scitq-server

By gmtscience

Updated almost 2 years ago

A scitq server image

Image
0

1.3K

gmtscience/scitq-server repository overview

minimal (with sqlite)

DO NOT USE IN PRODUCTION

docker run -d -p 5000:5000 -v /tmp:/var/lib/scitq gmtcience/scitq-server:latest

You can mount also a file in `/etc/ansible/inventory/02-scitq to provide different options for ansible worker deploy code.

with postgresql

docker run --name some-postgres -e POSTGRES_PASSWORD=mysecretpassword -e POSTGRES_DB=scitq -p 55000:5432 -d postgres
docker run -d -p 5000:5000 -e SQLALCHEMY_DATABASE_URI=postgresql://postgres:[email protected]:55000/scitq gmtcience/scitq-server:latest

Same as above, you can mount also a file in `/etc/ansible/inventory/02-scitq to provide different options for ansible worker deploy code.

Note that this is not really production ready: a production setup needs postgresql AND uwsgi which is not available (yet) in this docker. This still use the debug server mode, which is simpler but will not perform well even under moderate load.

Tag summary

Content type

Image

Digest

sha256:af87a93a2

Size

508 MB

Last updated

almost 2 years ago

docker pull gmtscience/scitq-server