mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-11 18:03:30 +08:00
11 lines
259 B
YAML
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"'
|