mook
mook
It doesn't parse the path in code correctly on Windows. --- Windows環境だとパスが正しく解釈されない。
Need the function to update workspace when someone edit files not on admin screen. --- 管理画面からでなく、手動でファイルの更新を行った場合もworkspace内を更新したい。
Need the function to switch environment configuration. e.g. Switch URL of web API when the environment was changed, etc --- 環境ごとに設定を切り分けられる機能が欲しい。 e.g. 環境ごとに使用するAPIを変更する、など
Reporting in this PR: https://github.com/mookjp/pool/pull/150 > My host has docker group and docker.sock owned by root:docker, 0660. > Starter script chown root:docker /var/run/docker.sock against mounted docker.sock, that changes owner gid...
https://github.com/mookjp/pool/blob/master/docker/pool/build-screen/app/scripts/main.js#L1-L16 ``` js (function () { showCommitId(); var es = new EventSource("/build/" + getCommitId()); es.addEventListener("build_log", function(event){ $(".log-console").append("\n" + event.data); $(".log-console").animate( { scrollTop: $(".log-console")[0].scrollHeight - $(".log-console").height() }, 50); }); es.addEventListener("build_finished", function(event){...
Dockerfile does not require the idempotence of the environment so that unexpected cache may be created; e.g. broken modules which is downloaded from the outside may be cached. It is...
https://github.com/mookjp/pool/blob/master/scripts/init_host_server#L38-L53 ``` sh if [[ -f /etc/os-release ]] && [[ $(cat /etc/os-release | grep "NAME=CoreOS") ]]; then echo "CoreOS detected. Updating to latest docker.." systemctl stop docker wget -q https://get.docker.com/builds/Linux/x86_64/docker-latest...
Currently it takes so long time to execute provisioning to Vagrant box. ## Plans 1. Divide the task to create environment to another project; create pool's own Vagrant box project...