16 lines
477 B
YAML
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
|