Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mloberg/dockerfiles
https://github.com/mloberg/dockerfiles
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mloberg/dockerfiles
- Owner: mloberg
- License: mit
- Created: 2020-03-09T21:43:49.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2020-08-12T16:08:18.000Z (over 4 years ago)
- Last Synced: 2024-12-24T10:13:10.196Z (15 days ago)
- Language: Dockerfile
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dockerfiles
A collection of Dockerfiles for my use.
make build
## AWS SAM CLI
Working directory is `/sam`
docker run -it --rm -v $PWD:/sam mlo/aws-sam --version
If you want to use `local start-api`, mount the docker sock, expose port `3000`,
and use `--host 0.0.0.0` in your SAM command.docker run -it --rm -v $PWD:/sam -v /var/run/docker.sock:/var/run/docker.sock -p 3000:3000 mlo/aws-sam local start-api --host 0.0.0.0