Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hadv/eb-echo-docker
deploy golang echo rest api to aws elastic beanstalk using docker
https://github.com/hadv/eb-echo-docker
docker echo elasticbeanstalk go golang
Last synced: about 1 month ago
JSON representation
deploy golang echo rest api to aws elastic beanstalk using docker
- Host: GitHub
- URL: https://github.com/hadv/eb-echo-docker
- Owner: hadv
- License: mit
- Created: 2016-11-04T17:45:23.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-24T06:19:23.000Z (over 6 years ago)
- Last Synced: 2024-09-26T23:43:07.953Z (about 2 months ago)
- Topics: docker, echo, elasticbeanstalk, go, golang
- Language: Go
- Size: 507 KB
- Stars: 8
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![CircleCI](https://circleci.com/gh/hadv/lumen-boilerplate.svg?style=svg)](https://circleci.com/gh/hadv/lumen-boilerplate) [![Go Report Card](https://goreportcard.com/badge/github.com/hadv/eb-echo-docker)](https://goreportcard.com/report/github.com/hadv/eb-echo-docker)
# eb-echo-docker
deploy golang echo rest api to aws elastic beanstalk using docker
you can access a sample deployment on aws beanstalk on below link
http://ebechodocker-env.ap-southeast-1.elasticbeanstalk.com
# check/deploy server on local docker
1. Build docker image
```
$ docker build -t eb-echo-docker .
```2. Run docker image on local machine on port 8080
```
$ docker run -it --rm -p 8080:3000 eb-echo-docker
```3. Check the server
```
$ curl http://192.168.99.100:8080
```