2024-11-20 18:08:11 +02:00
|
|
|
#
|
|
|
|
|
# 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'
|
|
|
|
|
|
|
|
|
|
include:
|
|
|
|
|
- docker-compose-micro-services-postgres.yml
|
|
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
|
|
|
|
|
# ---------------------
|
2025-11-17 09:03:27 +02:00
|
|
|
# HawkBit UI
|
2024-11-20 18:08:11 +02:00
|
|
|
# ---------------------
|
2025-11-17 09:03:27 +02:00
|
|
|
hawkbit-ui:
|
|
|
|
|
image: "hawkbit/hawkbit-ui:latest"
|
2024-11-20 18:08:11 +02:00
|
|
|
environment:
|
|
|
|
|
- 'SPRING_APPLICATION_JSON={"hawkbit.server.mgmtUrl": "http://hawkbit-mgmt:8080"}'
|
|
|
|
|
restart: always
|
|
|
|
|
ports:
|
|
|
|
|
- 8088:8088
|
|
|
|
|
labels:
|
2025-11-17 09:03:27 +02:00
|
|
|
NAME: "hawkbit-ui"
|
2024-11-20 18:08:11 +02:00
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
|
artifactrepo:
|
|
|
|
|
driver: local
|