Skip to content

Commit

Permalink
add docker-compose file and envvars example
Browse files Browse the repository at this point in the history
  • Loading branch information
shreddedbacon committed Jan 30, 2019
1 parent 4480636 commit 6fa56cb
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .envvars-example
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
CLIENT_ID=credhub-admin
CLIENT_SECRET=credhub_admin_secret
UI_URL=https://localhost:8443
CREDHUB_SERVER=https://192.168.50.6:8844
COOKIE_NAME=credhubui
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
build
.envvars
10 changes: 10 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: '2.3'
services:
credhub_ui:
build:
context: .
dockerfile: Dockerfile
ports:
- "8443:8443"
env_file:
- .envvars

0 comments on commit 6fa56cb

Please sign in to comment.