Skip to content

Instantly share code, notes, and snippets.

View Gary-Ascuy's full-sized avatar
🔥
Thinking ...

Gary Ascuy Gary-Ascuy

🔥
Thinking ...
View GitHub Profile
@Gary-Ascuy
Gary-Ascuy / gist:4d51239a1a85a22dff450651fd3b2729
Created April 30, 2017 02:36
docker_meteor_clone_todos_app.sh
# clone source code from github
git clone https://github.com/dockercochabamba/todos.git
@Gary-Ascuy
Gary-Ascuy / gist:66324e01acc47747e4d40316596bd4ca
Created April 30, 2017 02:35
docker_meteor_clone_todos_app.sh
# clone source code from github
git clone https://github.com/dockercochabamba/todos.git
@Gary-Ascuy
Gary-Ascuy / docker_meteor_create_build.sh
Last active April 30, 2017 02:22
Docker + Meteor - Create a linux build
# create meteor build for linux
meteor build ../build --server-only --architecture os.linux.x86_64
@Gary-Ascuy
Gary-Ascuy / Dockerfile
Last active April 29, 2017 22:31
Docker + Meteor
# Dockerfile for Meteor App
FROM node:4.8.2-alpine
MAINTAINER Gary Ascuy <gary.ascuy@gmail.com>
ENV BUILD_PACKAGES="python make gcc g++ git libuv bash curl tar bzip2" \
NODE_ENV=production \
ROOT_URL=http://localhost:3000 \
PORT=3000
WORKDIR /root/app/bundle
# Docker Meteor
FROM node:4.8.1-alpine
MAINTAINER Gary Ascuy <gary.ascuy@gmail.com>
ENV BUILD_PACKAGES="python make gcc g++ git libuv bash curl tar bzip2" \
NODE_ENV=production \
ROOT_URL=http://localhost:3000 \
PORT=3000
WORKDIR /root/app/bundle