monkeytype/frontend/docker-compose.yaml
Rizwan Mustafa 4e0a545f12
Create docker-compose.yaml file for frontend (#3058)
* Create docker-compose.yaml file for frontend

* Move docker-compose.yaml file

* change name

* Add docker instructions

* Add docker installation link
2022-06-01 14:04:00 -04:00

11 lines
259 B
YAML

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"'