Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OERu
wenotes-docker
Commits
b44b0f59
Commit
b44b0f59
authored
May 25, 2017
by
Dave Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added docker-compose.yml and sample configuration
parent
84395d14
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
0 deletions
+34
-0
.gitignore
.gitignore
+1
-0
docker-compose.yml-sample
docker-compose.yml-sample
+33
-0
No files found.
.gitignore
View file @
b44b0f59
options.json
secrets
tmp
docker-compose.yml
docker-compose.yml-sample
0 → 100644
View file @
b44b0f59
version: '2'
services:
couchdb:
restart: unless-stopped
image: oeru/couchdb2
ports:
- "127.0.0.1:5984:5984"
environment:
- COUCHDB_USER=admin
- COUCHDB_PASSWORD=[admin-pass]
- COUCHDB_BOT_USER=bot
- COUCHDB_BOT_PASSWORD=[bot-pass]
volumes:
- [local data path]/couchdb:/opt/couchdb/data
faye:
restart: unless-stopped
image: oeru/faye
ports:
- "127.0.0.1:8380:80"
depends_on:
- couchdb
volumes:
- [local data path]/faye:/opt/wenotes/server
- [local data path]/config/options.json:/opt/wenotes/server/options.json
wenotes-tools:
restart: unless-stopped
image: oeru/wenotes-tools
depends_on:
- couchdb
- faye
volumes:
- [local data path]/tools:/opt/wenotes/tools
- [local data path]/config/options.json:/opt/wenotes/tools/options.json
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment