* Add new sandbox files and remove temporary unavailable notice * remove old deployment script * adapt application properties * restructure hawkbit-runtime * move sandbox description. * adapt license checks * Introduce review findings and add new docker files * Remove redundant profile and attribute * Update website * redirect to sandbox * getting started * Add description for docker folder and renew favicon
76 lines
2.0 KiB
YAML
76 lines
2.0 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.7'
|
|
|
|
volumes:
|
|
vhost:
|
|
challange:
|
|
|
|
networks:
|
|
proxy_proxy:
|
|
external: true
|
|
sandbox:
|
|
driver: overlay
|
|
|
|
services:
|
|
|
|
# ---------------------
|
|
# hawkBit service
|
|
# ---------------------
|
|
hawkbit:
|
|
image: "hawkbit/hawkbit-update-server:latest"
|
|
networks:
|
|
- proxy_proxy
|
|
- sandbox
|
|
deploy:
|
|
restart_policy:
|
|
condition: on-failure
|
|
environment:
|
|
- 'SPRING_PROFILES_ACTIVE=cloudsandbox'
|
|
- 'SPRING_RABBITMQ_HOST=rabbitmq'
|
|
- 'SPRING_RABBITMQ_USERNAME=guest'
|
|
- 'SPRING_RABBITMQ_PASSWORD=guest'
|
|
- 'VIRTUAL_HOST=hawkbit.eclipse.org'
|
|
- 'LETSENCRYPT_HOST=hawkbit.eclipse.org'
|
|
|
|
# ---------------------
|
|
# hawkBit simulator
|
|
# ---------------------
|
|
simulator:
|
|
image: "hawkbit/hawkbit-device-simulator:latest"
|
|
networks:
|
|
- sandbox
|
|
deploy:
|
|
restart_policy:
|
|
condition: on-failure
|
|
environment:
|
|
- 'SPRING_RABBITMQ_VIRTUALHOST=/'
|
|
- 'SPRING_RABBITMQ_HOST=rabbitmq'
|
|
- 'SPRING_RABBITMQ_PORT=5672'
|
|
- 'SPRING_RABBITMQ_USERNAME=guest'
|
|
- 'SPRING_RABBITMQ_PASSWORD=guest'
|
|
- 'SPRING_RABBITMQ_SSL_ENABLED=false'
|
|
- 'HAWKBIT_DEVICES_SIMULATOR_AMQP_RECEIVERCONNECTORQUEUEFROMSP=sp_direct_queue'
|
|
- 'HAWKBIT_DEVICES_SIMULATOR_AMQP_SENDERFORSPEXCHANGE=sp.direct.exchange'
|
|
- 'HAWKBIT_DEVICES_SIMULATOR_AMQP_DEADLETTERQUEUE=sp_direct_queue_deadletter_ttl'
|
|
- 'HAWKBIT_DEVICES_SIMULATOR_AMQP_DEADLETTEREXCHANGE=sp.direct.exchange.deadletter'
|
|
|
|
# ---------------------
|
|
# RabbitMQ service
|
|
# ---------------------
|
|
rabbitmq:
|
|
image: "rabbitmq:3-management"
|
|
networks:
|
|
- sandbox
|
|
deploy:
|
|
restart_policy:
|
|
condition: on-failure
|
|
environment:
|
|
RABBITMQ_DEFAULT_VHOST: "/" |