Skip to content

Files

Latest commit

35e0681 · Jun 5, 2021

History

History
19 lines (18 loc) · 324 Bytes

README.md

File metadata and controls

19 lines (18 loc) · 324 Bytes

Golang DB Connection Pool Playground

Config

Configuration using Environment Variables

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=test_db
DB_USERNAME=root
DB_PASSWORD=
DB_CONNECTION_MAX=100

Docker

$ docker pull yohang/golang-db
$ docker run -it -p 8080:8080 yohang/golang-db