Skip to content
This repository has been archived by the owner on Aug 28, 2021. It is now read-only.

Commit

Permalink
Merge pull request #169 from speckleworks/will/docker-compose-2
Browse files Browse the repository at this point in the history
fix(docker): Fix up docker-compose.yml
  • Loading branch information
didimitrie authored Oct 29, 2019
2 parents 27fc8cb + f83530a commit c786098
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,32 +8,31 @@ services:
- '3000:3000'
networks:
- webnet
#restart: always
depends_on:
- redis
- mongo
environment:
# Please see the example .env file provided for how to properly configure this.
# https://github.com/speckleworks/SpeckleServer/blob/master/.env-base
- SERVER_NAME="Docker Speckle Server"
- CANONICAL_URL="http://localhost:3000"
- SESSION_SECRET="Change Me"
- SERVER_NAME=Docker Speckle Server
- CANONICAL_URL=http://localhost:3000
- SESSION_SECRET=change_me
# optional
- MAX_PROC=1
- CANONICAL_URL="http://localhost:3000"
- PUBLIC_STREAMS=true
- PLUGIN_DIRS="./node_modules/@speckle,./plugins"
- PLUGIN_DIRS=./node_modules/@speckle,./plugins
- PORT=3000
- IP=0.0.0.0
- MAX_PROC=1
- REQ_SIZE=10mb
- SESSION_SECRET=":D"
- MONGODB_URI="mongodb://localhost:27017/speckle_v3"
- REDIS_URL="redis://localhost:6379"
- MONGODB_URI=mongodb://mongo:27017/speckle_v3
- REDIS_URL=redis://redis:6379
- INDENT_RESPONSES=false
- EXPOSE_EMAILS=true
- FIRST_USER_ADMIN=true
- PUBLIC_REGISTRATION=true
- USE_LOCAL=true
- REDIRECT_URLS="https://app.speckle.systems"
- REDIRECT_URLS=https://app.speckle.systems
links:
- redis
- mongo
Expand Down

0 comments on commit c786098

Please sign in to comment.