mirror of
https://github.com/m1k1o/neko.git
synced 2025-04-29 02:16:21 +02:00
10 lines
224 B
Bash
Executable file
10 lines
224 B
Bash
Executable file
#!/bin/sh
|
|
cd "$(dirname "$0")"
|
|
|
|
# start component watch
|
|
docker run --rm -it \
|
|
--user "$(id -u):$(id -g)" \
|
|
--volume "${PWD}/../:/app" \
|
|
--entrypoint="/bin/bash" \
|
|
--workdir="/app" \
|
|
node:18-bullseye-slim
|