mirror of
https://github.com/shouptech/humulus.git
synced 2026-02-03 22:09:41 +00:00
Launch couch as a service
This commit is contained in:
parent
9eaaf4cee4
commit
37a9e151b8
2 changed files with 4 additions and 4 deletions
|
|
@ -1,14 +1,14 @@
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: default
|
name: default
|
||||||
|
|
||||||
steps:
|
services:
|
||||||
- name: launch couch
|
- name: couchdb
|
||||||
image: couchdb:2.3
|
image: couchdb:2.3
|
||||||
environment:
|
environment:
|
||||||
COUCHDB_USER: admin
|
COUCHDB_USER: admin
|
||||||
COUCHDB_PASSWORD: password
|
COUCHDB_PASSWORD: password
|
||||||
detach: true
|
|
||||||
|
|
||||||
|
steps:
|
||||||
- name: test
|
- name: test
|
||||||
image: python:3.6
|
image: python:3.6
|
||||||
commands:
|
commands:
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
SECRET_KEY = b'dev'
|
SECRET_KEY = b'dev'
|
||||||
COUCH_URL='http://localhost:5984'
|
COUCH_URL='http://couchdb:5984'
|
||||||
COUCH_USERNAME='admin'
|
COUCH_USERNAME='admin'
|
||||||
COUCH_PASSWORD='password'
|
COUCH_PASSWORD='password'
|
||||||
COUCH_DATABASE='humulus'
|
COUCH_DATABASE='humulus'
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue