Skip to content

Commit

Permalink
Merge pull request #1743 from dexidp/docker-compose
Browse files Browse the repository at this point in the history
add docker-compose.yaml for local testing
  • Loading branch information
bonifaido committed Jun 30, 2020
2 parents 415a4ea + 5b7a664 commit 371df97
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 1 deletion.
39 changes: 39 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# This docker-compose file provides quick setups for testing different storage backend options.
version: "3.8"
services:
mysql:
# For using percona-xtradb you need to make strict mode permissive with:
# docker-compose exec mysql mysql -uroot -proot -e "SET GLOBAL pxc_strict_mode=PERMISSIVE;"
# See: https://www.percona.com/doc/percona-xtradb-cluster/5.7/features/pxc-strict-mode.html
# image: percona/percona-xtradb-cluster:5.7
# image: mariadb:10.5
# image: mysql:5.6
# image: mysql:8.0
image: mysql:5.7
environment:
MYSQL_DATABASE: dex
MYSQL_USER: mysql
MYSQL_PASSWORD: mysql
MYSQL_ROOT_PASSWORD: root
ports:
- "127.0.0.1:3306:3306"

postgres:
image: postgres:10.8
environment:
POSTGRES_DB: dex
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
ports:
- "127.0.0.1:5432:5432"

etcd:
image: gcr.io/etcd-development/etcd:v3.2.9
environment:
ETCD_LISTEN_CLIENT_URLS: http://0.0.0.0:2379
ETCD_ADVERTISE_CLIENT_URLS: http://0.0.0.0:2379
ports:
- "127.0.0.1:2379:2379"

# For testing the Kubernetes storage backend we suggest https://kind.sigs.k8s.io/:
# kind create cluster
30 changes: 30 additions & 0 deletions examples/config-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,36 @@ storage:
config:
file: examples/dex.db

# type: mysql
# config:
# host: localhost
# port: 3306
# database: dex
# user: mysql
# password: mysql
# ssl:
# mode: "false"

# type: postgres
# config:
# host: localhost
# port: 5432
# database: dex
# user: postgres
# password: postgres
# ssl:
# mode: disable

# type: etcd
# config:
# endpoints:
# - http://localhost:2379
# namespace: dex/

# type: kubernetes
# config:
# kubeConfigFile: $HOME/.kube/config

# Configuration for the HTTP endpoints.
web:
http: 0.0.0.0:5556
Expand Down
2 changes: 1 addition & 1 deletion storage/sql/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ func TestMySQL(t *testing.T) {
NetworkDB: NetworkDB{
Database: getenv("DEX_MYSQL_DATABASE", "mysql"),
User: getenv("DEX_MYSQL_USER", "mysql"),
Password: getenv("DEX_MYSQL_PASSWORD", ""),
Password: getenv("DEX_MYSQL_PASSWORD", "mysql"),
Host: host,
Port: uint16(port),
ConnectionTimeout: 5,
Expand Down

0 comments on commit 371df97

Please sign in to comment.