2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-12 01:55:39 +00:00

Sqlite docker-compose file no longer requires .env file

As this is only used for CI this is OK
This commit is contained in:
Oliver Walters
2022-04-21 01:02:55 +10:00
parent 0974fde59e
commit ced9c6c050
3 changed files with 10 additions and 16 deletions

View File

@ -27,9 +27,9 @@ services:
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
environment:
- INVENTREE_DEBUG=True
- INVENTREE_DB_ENGINE=sqlite
restart: unless-stopped
# Background worker process handles long-running or periodic tasks
@ -44,9 +44,9 @@ services:
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
environment:
- INVENTREE_DEBUG=True
- INVENTREE_DB_ENGINE=sqlite
restart: unless-stopped
volumes: