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
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
Version: Mailvelope v1.5.1 | |
Comment: https://www.mailvelope.com | |
xsFNBFejq1UBEADRFfUrY/VIEfKBG8AP+aGrUim/X7IZIUl7mVVvYH4r1WOa | |
48LsLLGblU9EE4Bnkcmqs2ZbovmqEnLwP7Zw+jFUkAgSE9YmgOnNgkHDeuv0 | |
aotXp40g6zOWweh9SPE1b2jhCx3DOErhhbj3BktmvNqjAy02TYyI3N4hbkqS | |
qWvMu41J53NuhytGZWtyQno958z8BT+GZSVxSTtDopXE3ahhD16gxAYENkw1 | |
OyhA1OAHMBYJ2vArph67nhhYSaUVORkiiWKWMzl2AqFUoV6MgVKZPyhuCRJv | |
13lod0GQwPCw/n/PQTERohX0Ceo100UQQEQxTTvzcMEQ9cbA3VF1GDYdQy+0 |
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
this file intentionally has a leading space to make it come first asciibetically for the purpose of naming the gist relative to what its content is for |
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
# pop that CD in and install ubuntu 14.04 | |
FROM ubuntu:14.04 | |
# RUN a command. In this case we're just getting | |
# the bash command straightened out here. | |
RUN rm /bin/sh && ln -s /bin/bash /bin/sh | |
# Install curl so that we can clone NVM to help | |
# us manage multiple versions of node | |
RUN apt-get update && \ |
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
# The docker-compose DSL syntax format we're using | |
version: "2.1" | |
# The containers we want to start and the images to start | |
# them from | |
services: | |
# our basic node server we'll name "basic" | |
basic: | |
# the directory path - relative to this compose file - where |
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
# lets start from an image that already has nodejs installed | |
FROM node:8.9.4 | |
# Essentially running mkdir <name> inside the current working | |
# directory, and then cd <name> | |
WORKDIR /usr/src/app | |
# copy the package.json from your computer, into the | |
# current directory inside of the container. Then install | |
# all the dependencies. Then copy the rest of the files |
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
# The docker-compose DSL syntax format we're using | |
version: "2.1" | |
# The containers we want to start and the images to start | |
# them from | |
services: | |
# our basic node server we'll name "basic" | |
basic: | |
# the directory path - relative to this compose file - where |
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": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "attach", | |
"name": "Attach to Docker", | |
"address": "localhost", | |
"port": 9229, | |
"localRoot": "${workspaceRoot}/exposed-debug-ports", |
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
# The docker-compose DSL syntax format we're using | |
version: "2.1" | |
# The containers we want to start and the images to start | |
# them from | |
services: | |
# | |
# Base postgres 9.6 image that we can connect to. This | |
# will get downloaded straight from Docker Hub when we |
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
# The docker-compose DSL syntax format we're using | |
version: "2.1" | |
# The containers we want to start and the images to start | |
# them from | |
services: | |
# | |
# Base postgres 9.6 image that we can connect to. This | |
# will get downloaded straight from Docker Hub when we |
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
# The docker-compose DSL syntax format we're using | |
version: "2.1" | |
# The containers we want to start and the images to start | |
# them from | |
services: | |
# | |
# Base postgres 9.6 image that we can connect to. This | |
# will get downloaded straight from Docker Hub when we |