Skip to content

Commit

Permalink
feat: add forestadmin
Browse files Browse the repository at this point in the history
  • Loading branch information
moul committed Sep 5, 2019
1 parent bea18f4 commit 7608308
Show file tree
Hide file tree
Showing 38 changed files with 5,406 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
AUTH_SECRET=
FOREST_ENV_SECRET=
FOREST_AUTH_SECRET=
18 changes: 18 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,24 @@ services:
links:
- server

forestadmin:
build: ./forestadmin
environment:
- APPLICATION_PORT=3000
- DATABASE_URL=mysql://pathwar:uns3cur3@serverdb:3306/pathwar
- DATABASE_SCHEMA=
- DATABASE_SSL=false
- DATABASE_ENCRYPT=false
- AUTH_SECRET
- FOREST_ENV_SECRET
- FOREST_AUTH_SECRET
ports:
- "3000:3000"
volumes:
- ./forestadmin/:/usr/src/app
depends_on:
- serverdb

keycloak:
image: jboss/keycloak:6.0.1
restart: always
Expand Down
3 changes: 3 additions & 0 deletions forestadmin/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
npm-debug.log
.env
Loading

0 comments on commit 7608308

Please sign in to comment.