Skip to content

Instantly share code, notes, and snippets.

View guolin's full-sized avatar
🏠
Working from home

guolin guolin

🏠
Working from home
View GitHub Profile
@guolin
guolin / Dockerfile
Created September 20, 2016 08:40
daocloud config
FROM ubuntu:16.04
MAINTAINER guolin@mulumu.com
RUN apt-get update && apt-get install -y supervisor
RUN mkdir -p /var/log/supervisor
RUN apt-get install -y nodejs npm
# 安装基本的库, supervisor, nodejs
RUN apt-get update && apt-get install -y openssh-server
RUN mkdir -p /var/run/sshd
@guolin
guolin / .babelrc
Created September 19, 2016 11:13
leancloud fullstack project
{
"presets": ["es2015", "react"],
"plugins": ["add-module-exports"]
}