File size: 415 Bytes
0dcf096 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
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 |