this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 23 lines 381 B view raw
1services: 2 api: 3 build: 4 context: . 5 dockerfile: Dockerfile.api 6 restart: unless-stopped 7 env_file: 8 - ./apps/api/.env 9 volumes: 10 - cai_data:/data 11 ports: 12 - "127.0.0.1:4002:3001" 13 14 web: 15 build: 16 context: . 17 dockerfile: Dockerfile.web 18 restart: unless-stopped 19 ports: 20 - "127.0.0.1:4001:3000" 21 22volumes: 23 cai_data: