CoolFace
Apppublic

sifars/automated-invoice-processing-agent-backend

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
docker-compose.yml24 linesDownload Raw Back to root
1services:2  api:3    image: sifars.azurecr.io/fusion-bills/api:${BUILD_BUILDNUMBER:-latest}4    env_file:5      - .env6    ports:7      - "3000:3000"8      - "4000:4000"9    networks:10      - fusion-bills11    12  migration:13    image: sifars.azurecr.io/fusion-bills/api:${BUILD_BUILDNUMBER:-latest}14    env_file:15      - .env16    entrypoint:17      - yarn18    command: 19      - "db:migrate"20 21networks:22  fusion-bills:23    name: fusion-bills24