Store docker, conda, semantic-search configuration in a config directory

- Improves organization of config files required for application
- Declutters the application root directory from configs
This commit is contained in:
Debanjum Singh Solanky
2022-01-29 02:41:11 -05:00
parent 79c2224eaa
commit b0067fc32e
4 changed files with 4 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ services:
server:
build:
context: .
dockerfile: Dockerfile
dockerfile: config/Dockerfile
args:
- PORT=8000
ports:
@@ -30,4 +30,4 @@ services:
- ./tests/data/models/:/data/models/
# Use 0.0.0.0 to explicitly set the host ip for the service on the container. https://pythonspeed.com/articles/docker-connection-refused/
command: --host="0.0.0.0" --port=8000 -c=sample_config.yml -vv
command: --host="0.0.0.0" --port=8000 -c=config/sample_config.yml -vv