Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.07 KB | None | 0 0
  1. version: "2"
  2. services:
  3.     opennote:
  4.         image: foxusa/opennote
  5.         volumes:
  6.            -   "<HOST_LOCATION>:/root/certs:ro"#TODO set this
  7.         ports:
  8.            -   "80:80"
  9.             -   "443:443"
  10.             -   "6984:6984" #CouchDB Proxy
  11.         links:
  12.            - "couchdb:couchdb"
  13.     couchdb:
  14.         image: couchdb
  15.         volumes:
  16.            -   "<HOST_LOCATION>:/opt/couchdb/data" #TODO set this
  17.             -   "<HOST_LOCATION>:/root/certs:ro" #TODO set this
  18.         ports:
  19.            -   "5984:5984"
  20.             -   "6984:6984"
  21.         environment:
  22.             COUCHDB_USER: user #TODO set this
  23.             COUCHDB_PASSWORD: password #TODO set this
  24.  
  25.     minio:
  26.         image: minio/minio
  27.         volumes:
  28.            -   "<HOST_LOCATION>:/data" #TODO set this
  29.             -   "<HOST_LOCATION>:/root/.minio/certs:ro" #TODO set this
  30.         ports:
  31.            -   "9000:9000"
  32.         environment:
  33.             MINIO_ACCESS_KEY: tests #TODO set this
  34.             MINIO_SECRET_KEY: testssdfasdf #TODO set this
  35.         command: server /data
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement