49 lines
1.2 KiB
YAML
49 lines
1.2 KiB
YAML
#
|
|
# Copyright (c) 2018 Bosch Software Innovations GmbH and others
|
|
#
|
|
# This program and the accompanying materials are made
|
|
# available under the terms of the Eclipse Public License 2.0
|
|
# which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
#
|
|
# SPDX-License-Identifier: EPL-2.0
|
|
#
|
|
version: '3.7'
|
|
|
|
services:
|
|
# ---------------------
|
|
# MySQL service
|
|
# ---------------------
|
|
mysql:
|
|
image: "mysql:8.0"
|
|
environment:
|
|
MYSQL_DATABASE: "hawkbit"
|
|
# MYSQL_USER: "root" is created by default in the container for mysql 8.0+
|
|
MYSQL_ALLOW_EMPTY_PASSWORD: "true"
|
|
restart: always
|
|
ports:
|
|
- "3306:3306"
|
|
healthcheck:
|
|
test: [ "CMD", "mysqladmin" ,"ping", "-h", "localhost" ]
|
|
timeout: 20s
|
|
retries: 10
|
|
labels:
|
|
NAME: "mysql"
|
|
|
|
# ---------------------
|
|
# RabbitMQ service
|
|
# ---------------------
|
|
rabbitmq:
|
|
image: "rabbitmq:3-management-alpine"
|
|
hostname: "rabbitmq"
|
|
environment:
|
|
RABBITMQ_DEFAULT_VHOST: "/"
|
|
RABBITMQ_DEFAULT_USER: "guest"
|
|
RABBITMQ_DEFAULT_PASS: "guest"
|
|
ports:
|
|
- "15672:15672"
|
|
- "5672:5672"
|
|
deploy:
|
|
restart_policy:
|
|
condition: on-failure
|
|
|