An open API service indexing awesome lists of open source software.

https://github.com/manuelvanrijn/env-app

Example application to test out (print out) environment variables
https://github.com/manuelvanrijn/env-app

aws docker example-project ruby sinatra

Last synced: 2 months ago
JSON representation

Example application to test out (print out) environment variables

Awesome Lists containing this project

README

          

# env-app

This is a example application I used to see if env variables were passed to the container instance on AWS Fargate using AWS Systems Manager Parameter Store

## build

```
docker build -t manuelvanrijn/env-app .
```

## run

```
docker run -p 4567:4567 -e secret=toeter --rm manuelvanrijn/env-app:latest
# browse to http://localhost:4567
```

## docker image

```
docker pull manuelvanrijn/env-app
```