This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM haskell:8.0 | |
| LABEL maintainer="Akimichi Tatsukawa <akimichi.tatsukawa@gmail.com>" \ | |
| description="pandocコマンドを実行するためのdockerイメージ" | |
| # インストールするpandocのバージョンを設定する | |
| ENV PANDOC_VERSION "1.19.2.1" | |
| # latexパッケージをインストールする | |
| RUN apt-get update -y \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # full update | |
| sudo apt-get update | |
| sudo apt-get -y upgrade | |
| sudo rpi-update | |
| # reboot required | |
| read -r -p "You may need to reboot your RPi. Would you like to do that? [y/N] " response | |
| if [[ $response =~ ^([yY][eE][sS]|[yY])$ ]] | |
| then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| SHELL=/bin/bash | |
| PATH=/sbin:/bin:/usr/sbin:/usr/bin:/home/emile/.nvm/versions/node/v6.9.2/bin | |
| MAILTO=root | |
| HOME=/home/emile/app/denrei.node | |
| @reboot (sleep 30s ; cd $HOME; nvm use; npm start)& |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3.8' | |
| services: | |
| nginx: | |
| container_name: nginx_service | |
| build: | |
| context: ./nginx/ | |
| dockerfile: ./Dockerfile | |
| ports: | |
| - "80:80" | |
| links: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| MONGO_USER=emile | |
| MONGO_PASSWORD=shinka | |
| MONGO_HOST=hippocrates.local | |
| # MONGO_HOST=galeus.local | |
| MONGO_PORT=27117 | |
| MONGO_DATABASE=EHR-dev | |
| ORCAQL_URL=http://orcaql.local:4000/graphql |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Default global options. | |
| # prefixキーをC-aに変更する | |
| set-option -g prefix C-a # C-a for perfix just like screen | |
| # C-a*2でtmux内のプログラムにC-aを送る | |
| bind C-a send-prefix | |
| # C-bのキーバインドを解除する | |
| unbind C-b | |
| setw -g utf8 on |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --type-set=coffee=.coffee | |
| --type-set=md=.md,.markdown | |
| --type-set=text:ext:txt,tex | |
| --nogroup | |
| # Always color, even if piping to a another program | |
| #--color | |
| --ignore-file=is:package-lock.json | |
| --ignore-dir=.idea |
OlderNewer