diff --git a/InvenTree/InvenTree/version.py b/InvenTree/InvenTree/version.py index cba2822ad1..7bfb752b63 100644 --- a/InvenTree/InvenTree/version.py +++ b/InvenTree/InvenTree/version.py @@ -8,8 +8,7 @@ import re import common.models - -INVENTREE_SW_VERSION = "0.1.8 pre" +INVENTREE_SW_VERSION = "0.2.0 pre" # Increment this number whenever there is a significant change to the API that any clients need to know about INVENTREE_API_VERSION = 2 diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index c802444c79..a01f152b07 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -34,11 +34,6 @@ services: # InvenTree web server services # Uses gunicorn as the web server inventree: - build: - context: inventree - args: - repository: "https://github.com/SchrodingersGat/InvenTree.git" - branch: "django-q" image: inventree/inventree:latest container_name: inventree_server expose: @@ -61,8 +56,6 @@ services: # static files are served by nginx # web requests are redirected to gunicorn nginx: - build: - context: nginx container_name: inventree_proxy image: inventree/nginx:latest depends_on: @@ -75,11 +68,6 @@ services: # background worker process handles long-running or periodic tasks worker: - build: - context: inventree - args: - repository: "https://github.com/SchrodingersGat/InvenTree.git" - branch: "django-q" entrypoint: ./start_worker.sh image: inventree/inventree:latest container_name: inventree_worker