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:
I hereby claim:
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(); | |
| ?> |
| version: "2" | |
| services: | |
| ethercis_app: | |
| # Build EtherCIS application using Dockerfile contained in EtherCIS | |
| # application subfolder | |
| build: ./etherCIS/application | |
| # Name image | |
| image: ethercis-app |