Fix docker-compose.yml
parent
0bb9e968d6
commit
3409a096af
|
|
@ -7,13 +7,14 @@ services:
|
||||||
working_dir: /app/server
|
working_dir: /app/server
|
||||||
command: uvicorn app:app --host 0.0.0.0 --port 5000
|
command: uvicorn app:app --host 0.0.0.0 --port 5000
|
||||||
environment:
|
environment:
|
||||||
- TOKENIZER_NAME=../testdata/gptneox/tokenizer
|
- TOKENIZER_NAME=/tokenizer
|
||||||
- TRITON_HOST=triton
|
- TRITON_HOST=triton
|
||||||
- EVENTS_LOG_DIR=/logs/tabby-server
|
- EVENTS_LOG_DIR=/logs/tabby-server
|
||||||
ports:
|
ports:
|
||||||
- "5000:5000"
|
- "5000:5000"
|
||||||
volumes:
|
volumes:
|
||||||
- ./logs:/logs
|
- ./logs:/logs
|
||||||
|
- ../testdata/gptneox/tokenizer:/tokenizer
|
||||||
links:
|
links:
|
||||||
- triton
|
- triton
|
||||||
- vector
|
- vector
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue