Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/isayme/go-httpecho
http echo server with Golang
https://github.com/isayme/go-httpecho
Last synced: 12 days ago
JSON representation
http echo server with Golang
- Host: GitHub
- URL: https://github.com/isayme/go-httpecho
- Owner: isayme
- License: mit
- Created: 2018-10-27T09:34:30.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-02-07T11:36:07.000Z (11 months ago)
- Last Synced: 2024-06-20T08:03:34.640Z (6 months ago)
- Language: Go
- Homepage: https://echo.isayme.org
- Size: 23.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# httpecho
[![Docker Image Version (latest semver)](https://img.shields.io/docker/v/isayme/httpecho?sort=semver&style=flat-square)](https://hub.docker.com/r/isayme/httpecho)
![Docker Image Size (latest semver)](https://img.shields.io/docker/image-size/isayme/httpecho?sort=semver&style=flat-square)
![Docker Pulls](https://img.shields.io/docker/pulls/isayme/httpecho?style=flat-square)http echo server with Golang
# Run with Dokcer
## Docker Cli
```
docker run -p 3000:3000 isayme/httpecho:lastest
```## Docker Compose
```
version: '3'services:
httpecho:
container_name: httpecho
image: isayme/httpecho:latest
ports:
# http echo serve with 3000 port
- '3000:3000'
restart: unless-stopped
```