quote-api / docker-compose.yml
akkun3704's picture
Upload folder using huggingface_hub
5ae7e18
raw
history blame contribute delete
415 Bytes
version: '3'
services:
api:
build:
context: .
env_file: .env
restart: always
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
networks:
- quotly
command: node index.js
ports:
- 127.0.0.1:4888:4888
networks:
quotly:
external: true