initial commit

This commit is contained in:
2022-07-11 19:27:00 +02:00
commit fc1690fb7d
122 changed files with 29578 additions and 0 deletions

21
docker-node.sh Executable file
View File

@@ -0,0 +1,21 @@
#!/bin/bash
# exécute toujours dans le répertoire `php`
cd $(dirname $0)
if [ $# -eq 0 ]
then
cmd=bash
else
cmd="${@}"
fi
docker run \
--rm \
--interactive \
--tty \
--user $(id -u):$(id -g) \
--volume ${PWD}:/app \
--workdir /app \
--env YARN_CACHE_FOLDER=/app/.yarncache \
node:14 ${cmd}