Files
hereconnect/docker-compose.yml
T
ti 1a2bbf8174
Deploy app frontend / app frontend (push) Successful in 1m13s
Deploy service couchdb / service couchdb (push) Successful in 17s
Deploy db-migrations / db-migrations (push) Failing after 56s
Deploy service message-delivery-method-web-push / service message-delivery-method-web-push (push) Successful in 44s
fix ci/cd
2024-12-03 15:00:42 +02:00

37 lines
817 B
YAML

services:
couchdb:
build: services/couchdb
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:
max-size: "100m"
max-file: "10"
db-migrations:
image: hereconnect/service-db-migrations:${DB_MIGRATIONS_TAG:-latest}
build: build/service-db-migrations
volumes:
- db_migrations_data:/opt/db-migrations/data
environment:
- API_URL=http://${COUCHDB_USER}:${COUCHDB_PASSWORD}@couchdb:5984
depends_on:
- couchdb
restart: no
volumes:
couchdb_data:
db_migrations_data: