mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Refactor development docker-compose setup
This commit is contained in:
parent
0b3aac21ea
commit
85feb30812
@ -1,6 +1,6 @@
|
|||||||
# InvenTree environment variables for a development setup
|
# InvenTree environment variables for a development setup
|
||||||
|
|
||||||
# Set DEBUG to False for a production environment!
|
# Set DEBUG to True for a development setup
|
||||||
INVENTREE_DEBUG=True
|
INVENTREE_DEBUG=True
|
||||||
INVENTREE_DEBUG_LEVEL=INFO
|
INVENTREE_DEBUG_LEVEL=INFO
|
||||||
|
|
||||||
@ -15,3 +15,4 @@ INVENTREE_DB_PASSWORD=pgpassword
|
|||||||
|
|
||||||
# Enable plugins?
|
# Enable plugins?
|
||||||
INVENTREE_PLUGINS_ENABLED=True
|
INVENTREE_PLUGINS_ENABLED=True
|
||||||
|
|
@ -1,62 +0,0 @@
|
|||||||
version: "3.8"
|
|
||||||
|
|
||||||
# Docker compose recipe for InvenTree development server
|
|
||||||
# - Runs sqlite database
|
|
||||||
# - Uses built-in django webserver
|
|
||||||
# - Runs the InvenTree background worker process
|
|
||||||
# - Serves media and static content directly from Django webserver
|
|
||||||
|
|
||||||
# IMPORANT NOTE:
|
|
||||||
# The InvenTree docker image does not clone source code from git.
|
|
||||||
# Instead, you must specify *where* the source code is located,
|
|
||||||
# (on your local machine).
|
|
||||||
# The django server will auto-detect any code changes and reload the server.
|
|
||||||
|
|
||||||
services:
|
|
||||||
|
|
||||||
# InvenTree web server services
|
|
||||||
# Uses gunicorn as the web server
|
|
||||||
inventree-dev-server:
|
|
||||||
container_name: inventree-dev-server
|
|
||||||
build:
|
|
||||||
context: .
|
|
||||||
target: dev
|
|
||||||
ports:
|
|
||||||
# Expose web server on port 8000
|
|
||||||
- 8000:8000
|
|
||||||
volumes:
|
|
||||||
# Ensure you specify the location of the 'src' directory at the end of this file
|
|
||||||
- src:/home/inventree
|
|
||||||
env_file:
|
|
||||||
# Environment variables required for the dev server are configured in dev-config.env
|
|
||||||
- sqlite-config.env
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
# Background worker process handles long-running or periodic tasks
|
|
||||||
inventree-dev-worker:
|
|
||||||
container_name: inventree-dev-worker
|
|
||||||
build:
|
|
||||||
context: .
|
|
||||||
target: dev
|
|
||||||
command: invoke worker
|
|
||||||
depends_on:
|
|
||||||
- inventree-dev-server
|
|
||||||
volumes:
|
|
||||||
# Ensure you specify the location of the 'src' directory at the end of this file
|
|
||||||
- src:/home/inventree
|
|
||||||
env_file:
|
|
||||||
# Environment variables required for the dev server are configured in dev-config.env
|
|
||||||
- sqlite-config.env
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
# NOTE: Change "../" to a directory on your local machine, where the InvenTree source code is located
|
|
||||||
# Persistent data, stored external to the container(s)
|
|
||||||
src:
|
|
||||||
driver: local
|
|
||||||
driver_opts:
|
|
||||||
type: none
|
|
||||||
o: bind
|
|
||||||
# This directory specified where InvenTree source code is stored "outside" the docker containers
|
|
||||||
# By default, this directory is one level above the "docker" directory
|
|
||||||
device: ../
|
|
@ -8,10 +8,12 @@ version: "3.8"
|
|||||||
|
|
||||||
# IMPORANT NOTE:
|
# IMPORANT NOTE:
|
||||||
# The InvenTree development image does not clone source code from git.
|
# The InvenTree development image does not clone source code from git.
|
||||||
# Instead, you must specify *where* the source code is located, (on your local machine).
|
# Instead, it runs from source code on your local machine.
|
||||||
# The default setup in this file should work straight out of the box, without modification
|
|
||||||
# The django server will auto-detect any code changes and reload the server.
|
# The django server will auto-detect any code changes and reload the server.
|
||||||
|
|
||||||
|
# If you have cloned the InvenTree git repo, and not made any changes to this file,
|
||||||
|
# then the default setup in this file should work straight out of the box, without modification
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
# Database service
|
# Database service
|
||||||
@ -21,16 +23,15 @@ services:
|
|||||||
container_name: inventree-dev-db
|
container_name: inventree-dev-db
|
||||||
image: postgres:13
|
image: postgres:13
|
||||||
ports:
|
ports:
|
||||||
- 5432/tcp
|
- ${INVENTREE_DB_PORT:-5432}/tcp
|
||||||
environment:
|
environment:
|
||||||
- PGDATA=/var/lib/postgresql/data/dev/pgdb
|
- PGDATA=/var/lib/postgresql/data/dev/pgdb
|
||||||
# The pguser and pgpassword values must be the same in the other containers
|
- POSTGRES_USER=${INVENTREE_DB_USER:?You must provide the 'INVENTREE_DB_USER' variable in the .env file}
|
||||||
# Ensure that these are correctly configured in your dev-config.env file
|
- POSTGRES_PASSWORD=${INVENTREE_DB_PASSWORD:?You must provide the 'INVENTREE_DB_PASSWORD' variable in the .env file}
|
||||||
- POSTGRES_USER=pguser
|
- POSTGRES_DB=${INVENTREE_DB_NAME:?You must provide the 'INVENTREE_DB_NAME' variable in the .env file}
|
||||||
- POSTGRES_PASSWORD=pgpassword
|
|
||||||
volumes:
|
volumes:
|
||||||
# Map 'data' volume such that postgres database is stored externally
|
# Map 'data' volume such that postgres database is stored externally
|
||||||
- src:/var/lib/postgresql/data
|
- inventree_src:/var/lib/postgresql/data
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
# InvenTree web server services
|
# InvenTree web server services
|
||||||
@ -51,7 +52,7 @@ services:
|
|||||||
# - 8000
|
# - 8000
|
||||||
volumes:
|
volumes:
|
||||||
# Ensure you specify the location of the 'src' directory at the end of this file
|
# Ensure you specify the location of the 'src' directory at the end of this file
|
||||||
- src:/home/inventree
|
- inventree_src:/home/inventree
|
||||||
env_file:
|
env_file:
|
||||||
# Environment variables required for the dev server are configured in dev-config.env
|
# Environment variables required for the dev server are configured in dev-config.env
|
||||||
- dev-config.env
|
- dev-config.env
|
||||||
@ -68,7 +69,7 @@ services:
|
|||||||
- inventree-dev-server
|
- inventree-dev-server
|
||||||
volumes:
|
volumes:
|
||||||
# Ensure you specify the location of the 'src' directory at the end of this file
|
# Ensure you specify the location of the 'src' directory at the end of this file
|
||||||
- src:/home/inventree
|
- inventree_src:/home/inventree
|
||||||
env_file:
|
env_file:
|
||||||
# Environment variables required for the dev server are configured in dev-config.env
|
# Environment variables required for the dev server are configured in dev-config.env
|
||||||
- dev-config.env
|
- dev-config.env
|
||||||
@ -86,21 +87,20 @@ services:
|
|||||||
# # Change "8000" to the port that you want InvenTree web server to be available on
|
# # Change "8000" to the port that you want InvenTree web server to be available on
|
||||||
# - 8000:80
|
# - 8000:80
|
||||||
# volumes:
|
# volumes:
|
||||||
# # Provide ./nginx.conf file to the container
|
# # Provide ./nginx.dev.conf file to the container
|
||||||
# # Refer to the provided example file as a starting point
|
# # Refer to the provided example file as a starting point
|
||||||
# - ./nginx.dev.conf:/etc/nginx/conf.d/default.conf:ro
|
# - ./nginx.dev.conf:/etc/nginx/conf.d/default.conf:ro
|
||||||
# # nginx proxy needs access to static and media files
|
# # nginx proxy needs access to static and media files
|
||||||
# - src:/var/www
|
# - inventree_src:/var/www
|
||||||
# restart: unless-stopped
|
# restart: unless-stopped
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
# NOTE: Change "../" to a directory on your local machine, where the InvenTree source code is located
|
|
||||||
# Persistent data, stored external to the container(s)
|
# Persistent data, stored external to the container(s)
|
||||||
src:
|
inventree_src:
|
||||||
driver: local
|
driver: local
|
||||||
driver_opts:
|
driver_opts:
|
||||||
type: none
|
type: none
|
||||||
o: bind
|
o: bind
|
||||||
# This directory specified where InvenTree source code is stored "outside" the docker containers
|
# This directory specified where InvenTree source code is stored "outside" the docker containers
|
||||||
# By default, this directory is one level above the "docker" directory
|
# By default, this directory is one level above the "docker" directory
|
||||||
device: ../
|
device: ${INVENTREE_EXT_VOLUME:-../}
|
@ -12,7 +12,7 @@
|
|||||||
# Default web port for the InvenTree server
|
# Default web port for the InvenTree server
|
||||||
INVENTREE_WEB_PORT=1337
|
INVENTREE_WEB_PORT=1337
|
||||||
|
|
||||||
# Ensure debug is false for a production setup
|
# Ensure DEBUG is False for a production setup
|
||||||
INVENTREE_DEBUG=False
|
INVENTREE_DEBUG=False
|
||||||
INVENTREE_LOG_LEVEL=WARNING
|
INVENTREE_LOG_LEVEL=WARNING
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
version: "3.8"
|
version: "3.8"
|
||||||
|
|
||||||
# Docker compose recipe for InvenTree (production setup)
|
# Docker compose recipe for InvenTree production server
|
||||||
# - PostgreSQL as the database backend
|
# - PostgreSQL as the database backend
|
||||||
# - gunicorn as the InvenTree web server
|
# - gunicorn as the InvenTree web server
|
||||||
# - django-q as the InvenTree background worker process
|
# - django-q as the InvenTree background worker process
|
||||||
|
@ -1,10 +0,0 @@
|
|||||||
# InvenTree environment variables for a development setup
|
|
||||||
|
|
||||||
# Set DEBUG to False for a production environment!
|
|
||||||
INVENTREE_DEBUG=True
|
|
||||||
INVENTREE_DEBUG_LEVEL=INFO
|
|
||||||
|
|
||||||
# Database configuration options
|
|
||||||
# Note: The example setup is for a PostgreSQL database (change as required)
|
|
||||||
INVENTREE_DB_ENGINE=sqlite
|
|
||||||
INVENTREE_DB_NAME=/home/inventree/dev/inventree_db.sqlite3
|
|
Loading…
Reference in New Issue
Block a user