sw-jobs-api/docker-compose.yaml
ChrQR 7049dcc992
Some checks are pending
Build and Push Docker Images / build (push) Waiting to run
initial commit
2024-05-29 23:28:58 +02:00

28 lines
438 B
YAML

version: "3.8"
services:
api:
build:
context: ./api
dockerfile: Dockerfile
ports:
- "5000:5000"
volumes:
- ./scrapers:/app/scrapers
environment:
- FLASK_ENV=production
client:
build:
context: ./client
dockerfile: Dockerfile
ports:
- "3000:3000"
scraper:
build:
context: ./scrapers
dockerfile: Dockerfile
volumes:
- ./scrapers:/app