4/27 落雷からの瞬断以来、NTTフレッツ光でのインターネット接続ができなくなった。 具体的には
- ctu.fletsnet.com の名前解決はできる
- ctu.fletsnet.com へのpingは通る
- https://ctu.fletsnet.com をブラウザで開くこととができない
| peco-gcloud-project-widget (){ | |
| peco-gcloud project -z | anyframe-action-put | |
| } | |
| zle -N peco-gcloud-project-widget | |
| bindkey '^gp' peco-gcloud-project-widget | |
| peco-gcloud-ssh-widget (){ | |
| peco-gcloud ssh -z | anyframe-action-put | |
| } | |
| zle -N peco-gcloud-ssh-widget |
| source 'https://rubygems.org' | |
| gem 'psych' |
| wordpress: | |
| image: wordpress:latest | |
| links: | |
| - db:mysql | |
| ports: | |
| - 8080:80 | |
| environment: | |
| - WORDPRESS_DB_USER=wordpress | |
| - WORDPRESS_DB_PASSWORD=wordpress | |
| db: |
4/27 落雷からの瞬断以来、NTTフレッツ光でのインターネット接続ができなくなった。 具体的には
| FROM debian:jessie | |
| RUN sed -i -e "s@http://httpredir\.debian\.org/debian@http://ftp.jp.debian.org/debian@" /etc/apt/sources.list | |
| RUN apt-get update | |
| RUN DEBIAN_FRONTEND=noninteractive apt-get dist-upgrade -y --no-install-recommends | |
| RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ | |
| build-essential autoconf bison ca-certificates libgdbm-dev libncursesw5-dev libncurses5-dev \ | |
| libreadline6-dev tcl-dev tk-dev zlib1g-dev libssl-dev libffi-dev libyaml-dev libgmp-dev \ | |
| adduser sudo |
| #user nobody; | |
| worker_processes 1; | |
| #error_log logs/error.log; | |
| #error_log logs/error.log notice; | |
| #error_log logs/error.log info; | |
| error_log /dev/stdout info; | |
| #pid logs/nginx.pid; |
| debian@3b7da953d601:~$ dig rubygems.global.ssl.fastly.net | |
| ; <<>> DiG 9.9.5-12.1-Debian <<>> rubygems.global.ssl.fastly.net | |
| ;; global options: +cmd | |
| ;; Got answer: | |
| ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 15429 | |
| ;; flags: qr rd ra; QUERY: 1, ANSWER: 3, AUTHORITY: 0, ADDITIONAL: 1 | |
| ;; OPT PSEUDOSECTION: | |
| ; EDNS: version: 0, flags:; udp: 512 |
| gist file name | real path |
|---|---|
| etc_default_docker.sh | /etc/default/docker |
| systemd-dropin-file.conf | /etc/systemd/system/docker.service.d/10-env-file.conf |
| FROM minimum2scp/baseimage-jessie:latest | |
| ARG NGINX_VERSION=1.11.4 | |
| ARG NGX_MRUBY_VERSION=v1.18.6 | |
| ARG DEB_BASE_REVISION=1~jessie | |
| ARG DEB_NGINX_MODULE_MRUBY_VERSION=${NGINX_VERSION}-${NGX_MRUBY_VERSION} | |
| RUN sed -i -e 's/httpredir.debian.org/ftp.jp.debian.org/' /etc/apt/sources.list | |
| RUN curl http://nginx.org/keys/nginx_signing.key | apt-key add - | |
| RUN echo "deb http://nginx.org/packages/mainline/debian/ jessie nginx" > /etc/apt/sources.list.d/nginx.list |