monkeytype/frontend/docker-compose.yaml

11 lines
259 B
YAML
Raw Normal View History

services:
monkeytype-frontend:
container_name: monkeytype-frontend
image: node:gallium-bullseye
restart: on-failure
ports:
- "3000:3000"
volumes:
- ../:/monkeytype
entrypoint: 'bash -c "cd /monkeytype && npm run dev-fe"'