mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-10 17:04:49 +08:00
4e0a545f12
* Create docker-compose.yaml file for frontend * Move docker-compose.yaml file * change name * Add docker instructions * Add docker installation link
10 lines
259 B
YAML
10 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"'
|