* Initial commit * Fix compile breaks * Fix hibernate config * Fix hibernate config * Fix failing tests * Improve logging * Improve logging * Fix Sonar issues * Remove BusProperties * Add BusProperties bean back in * Fix JPA workaround * Fix CVE-2021-22044 * Fix test failures * Fix PR review findings * Fix CVEs * Remove H2 version downgrade, fix schema migration, enable legacy mode * Downgrade Vaadin back to 8.14.3 * Fix EventPublisherHolder * Fix RemoteTenantAwareEvent * Fixed EventPublisherAutoConfiguration * New version of spring-hateoas requires links to be expanded (Mgmt API) * New version of spring-hateoas requires links to be expanded (Mgmt API) * Fix PR review findings * Fix PR review findings * Fix PR review findings * Update README.md * MariaDB Java Client downgrade to maintain compatibility with AWS Aurora * Temporarily disable RSQL test that depends on DB collation type * Upgrade to boot 2.7.10 * Upgrade snakeyaml to 1.33 * Upgrade Spring Security OAuth2 to version 5.7.7 * Remove obsolete exclusion of junit-vintage-engine * Upgrade jackson-bom to 2.14.2
58 lines
1.4 KiB
YAML
58 lines
1.4 KiB
YAML
#
|
|
# Copyright (c) 2018 Bosch Software Innovations GmbH and others.
|
|
#
|
|
# All rights reserved. This program and the accompanying materials
|
|
# are made available under the terms of the Eclipse Public License v1.0
|
|
# which accompanies this distribution, and is available at
|
|
# http://www.eclipse.org/legal/epl-v10.html
|
|
#
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
# ---------------------
|
|
# RabbitMQ service
|
|
# ---------------------
|
|
rabbitmq:
|
|
image: "rabbitmq:3-management"
|
|
environment:
|
|
RABBITMQ_DEFAULT_VHOST: "/"
|
|
restart: always
|
|
ports:
|
|
- "15672:15672"
|
|
- "5672:5672"
|
|
labels:
|
|
NAME: "rabbitmq"
|
|
|
|
# ---------------------
|
|
# MySQL service
|
|
# ---------------------
|
|
mysql:
|
|
image: "mysql:5.7"
|
|
environment:
|
|
MYSQL_DATABASE: "hawkbit"
|
|
# MYSQL_USER: "root" is created by default in the container for mysql 5.7+
|
|
MYSQL_ALLOW_EMPTY_PASSWORD: "true"
|
|
restart: always
|
|
ports:
|
|
- "3306:3306"
|
|
labels:
|
|
NAME: "mysql"
|
|
|
|
# ---------------------
|
|
# HawkBit service
|
|
# ---------------------
|
|
hawkbit:
|
|
image: "hawkbit/hawkbit-update-server:latest-mysql"
|
|
environment:
|
|
- 'SPRING_DATASOURCE_URL=jdbc:mariadb://mysql:3306/hawkbit'
|
|
- 'SPRING_RABBITMQ_HOST=rabbitmq'
|
|
- 'SPRING_RABBITMQ_USERNAME=guest'
|
|
- 'SPRING_RABBITMQ_PASSWORD=guest'
|
|
- 'SPRING_DATASOURCE_USERNAME=root'
|
|
restart: always
|
|
ports:
|
|
- "8080:8080"
|
|
labels:
|
|
NAME: "hawkbit"
|