Skip to content

Instantly share code, notes, and snippets.

View alessfg's full-sized avatar

Alessandro Fael Garcia alessfg

View GitHub Profile

Keybase proof

I hereby claim:

  • I am alessfg on github.
  • I am alessfg (https://keybase.io/alessfg) on keybase.
  • I have a public key ASCXZp2668D_X2gnjJZcldEQ_YOsNhqsTcHVhVKHeb_z8Qo

To claim this, I am signing this object:

import os
import datetime
def application(environ, start_response):
output = datetime.datetime.now().strftime("%Y-%m-%d %I:%M:%S %p")
output += "\n\nENV Variables:\n\n"
for param in os.environ.keys():
output += param
output += "\t"
output += os.environ[param]
output += "\n"
<?php
phpinfo();
?>
@alessfg
alessfg / docker-compose.yml
Created September 7, 2016 11:01
Docker compose file to start EtherCIS and OpenEMPI simultaneously
version: "2"
services:
ethercis_app:
# Build EtherCIS application using Dockerfile contained in EtherCIS
# application subfolder
build: ./etherCIS/application
# Name image
image: ethercis-app