Spaces:
Running
Running
File size: 557 Bytes
00d6248 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | version: '3.8'
services:
pdf-prod:
build: .
container_name: pdf-prod
restart: always
ports:
- "7860:7860"
environment:
- NODE_ENV=production
- PORT=7860
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
pdf-test:
build: .
container_name: pdf-test
restart: always
ports:
- "7861:7860"
environment:
- NODE_ENV=test
- PORT=7860
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
|