mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-15 03:55:41 +08:00
16 lines
372 B
YAML
16 lines
372 B
YAML
|
name: monkeytype
|
||
|
services:
|
||
|
frontend:
|
||
|
container_name: monkeytype-frontend
|
||
|
image: node:18.19.1
|
||
|
# restart: on-failure
|
||
|
environment:
|
||
|
- SERVER_OPEN=false
|
||
|
ports:
|
||
|
- "3000:3000"
|
||
|
volumes:
|
||
|
- ../../:/monkeytype
|
||
|
user: node
|
||
|
entrypoint: 'bash -c "cd /monkeytype/frontend && npm i && npm run dev"'
|
||
|
# entrypoint: "tail -f /dev/null"
|