fix ci/cd
Deploy app frontend / app frontend (push) Successful in 1m12s
Deploy service couchdb / service couchdb (push) Successful in 16s
Deploy service message-delivery-method-web-push / service message-delivery-method-web-push (push) Failing after 43s
Deploy db-migrations / db-migrations (push) Successful in 54s
Deploy app frontend / app frontend (push) Successful in 1m12s
Deploy service couchdb / service couchdb (push) Successful in 16s
Deploy service message-delivery-method-web-push / service message-delivery-method-web-push (push) Failing after 43s
Deploy db-migrations / db-migrations (push) Successful in 54s
This commit is contained in:
+19
-4
@@ -4,16 +4,12 @@ services:
|
||||
image: hereconnect/service-couchdb:${COUCHDB_TAG:-latest}
|
||||
ports:
|
||||
- "127.0.0.1:5984:5984"
|
||||
|
||||
volumes:
|
||||
- couchdb_data:/opt/couchdb/data
|
||||
|
||||
environment:
|
||||
- COUCHDB_USER=${COUCHDB_USER}
|
||||
- COUCHDB_PASSWORD=${COUCHDB_PASSWORD}
|
||||
|
||||
restart: unless-stopped
|
||||
|
||||
logging:
|
||||
driver: "json-file"
|
||||
options:
|
||||
@@ -30,6 +26,25 @@ services:
|
||||
depends_on:
|
||||
- couchdb
|
||||
restart: no
|
||||
logging:
|
||||
driver: "json-file"
|
||||
options:
|
||||
max-size: "10m"
|
||||
max-file: "1"
|
||||
|
||||
message-delivery-method-web-push:
|
||||
image: hereconnect/message-delivery-method-web-push:${MESSAGE_DELIVERY_METHOD_WEB_PUSH_TAG:-latest}
|
||||
build: build/message-delivery-method-web-push
|
||||
environment:
|
||||
- API_URL=http://${COUCHDB_USER}:${COUCHDB_PASSWORD}@couchdb:5984
|
||||
depends_on:
|
||||
- couchdb
|
||||
restart: no
|
||||
logging:
|
||||
driver: "json-file"
|
||||
options:
|
||||
max-size: "100m"
|
||||
max-file: "10"
|
||||
|
||||
volumes:
|
||||
couchdb_data:
|
||||
|
||||
Reference in New Issue
Block a user