gohorsejobs/docker-compose.yml
2026-02-11 13:24:12 +00:00

16 lines
477 B
YAML

services:
frontend:
image: node:20-alpine
working_dir: /app
volumes:
- ./frontend:/app
command: sh -c "npm install && npm run dev -- -p 3000"
ports:
- "3000:3000"
environment:
- NEXT_PUBLIC_API_URL=https://api-local.gohorsejobs.com
- API_URL=https://api-local.gohorsejobs.com
- BACKOFFICE_URL=https://b-local.gohorsejobs.com
- SEEDER_API_URL=https://s-local.gohorsejobs.com
- HOST=0.0.0.0
restart: always