remove unused variables
This commit is contained in:
parent
16e3c3fb31
commit
8aed879a5f
2 changed files with 2 additions and 4 deletions
3
Makefile
3
Makefile
|
@ -1,6 +1,3 @@
|
||||||
CONFIG_FILE = conf/config.env
|
|
||||||
SECRET_FILE = conf/secrets.env
|
|
||||||
|
|
||||||
COMPOSE_CMD ?= docker compose
|
COMPOSE_CMD ?= docker compose
|
||||||
# use unix:///run/docker.sock for docker socket, unix://${XDG_RUNTIME_DIR}/podman/podman.sock for podman
|
# use unix:///run/docker.sock for docker socket, unix://${XDG_RUNTIME_DIR}/podman/podman.sock for podman
|
||||||
DOCKER_HOST ?= unix:///run/docker.sock
|
DOCKER_HOST ?= unix:///run/docker.sock
|
||||||
|
|
|
@ -100,9 +100,10 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
# Data volume must map to /home/inventree/data
|
# Data volume must map to /home/inventree/data
|
||||||
- inventree_data:/home/inventree/data:z
|
- inventree_data:/home/inventree/data:z
|
||||||
|
- ./plugins:/home/inventree/InvenTree/plugins:z
|
||||||
# ugly backport of 0.11.0 features, to be removed
|
# ugly backport of 0.11.0 features, to be removed
|
||||||
- ./patch/settings.py:/home/inventree/InvenTree/InvenTree/settings.py:ro,Z
|
- ./patch/settings.py:/home/inventree/InvenTree/InvenTree/settings.py:ro,Z
|
||||||
- ./patch/config.py:/home/inventree/InvenTree/InvenTree/config.py:zo,Z
|
- ./patch/config.py:/home/inventree/InvenTree/InvenTree/config.py:ro,Z
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
# Background worker process handles long-running or periodic tasks
|
# Background worker process handles long-running or periodic tasks
|
||||||
|
|
Loading…
Add table
Reference in a new issue