Skip to content

Instantly share code, notes, and snippets.

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

Ahmet Simsek indatawetrust

🏠
Working from home
View GitHub Profile
version: '3.1'
services:
reverse-proxy:
image: traefik # The official Traefik docker image
command: --api --docker # Enables the web UI and tells Traefik to listen to docker
ports:
- "3000:3000" # The HTTP port
- "8080:8080" # The Web UI (enabled by --api)
volumes:
- /var/run/docker.sock:/var/run/docker.sock # So that Traefik can listen to the Docker events
@indatawetrust
indatawetrust / plink-plonk.js
Created February 18, 2020 10:37 — forked from tomhicks/plink-plonk.js
Listen to your web pages
@indatawetrust
indatawetrust / Dockerfile
Last active April 10, 2019 16:06 — forked from RinatMullayanov/Dockerfile
Ubuntu Node.js Dockerfile WebRTC
#
# Ubuntu Node.js Dockerfile
#
# https://github.com/dockerfile/ubuntu/blob/master/Dockerfile
# https://docs.docker.com/examples/nodejs_web_app/
#
# Pull base image.
FROM ubuntu:14.04
RUN apt-get update && apt-get install -y apt-transport-https
@indatawetrust
indatawetrust / rebar-reltool-relase-notes.md
Created February 4, 2016 15:29 — forked from ToddG/rebar-reltool-relase-notes.md
using rebar to create an erlang app with a dependency, and then starting a release created with reltool

Summary

I'm trying to figure out how to use rebar to:

  • create erlang project
  • add a dependency on an erlang module from github
  • start the app via the erl console
  • create a release and start the app from the release (via the generated scripts)