diff --git a/README.md b/README.md index b4e3ed9..8397a8d 100644 --- a/README.md +++ b/README.md @@ -77,6 +77,17 @@ volumes: - ./keys/device_api_keystore.p12:/app/resources/cert/keystore.p12 ``` +### Device Configuration + +Store configurations for electronic devices. GitHub [Hlæja Device Configuration](https://github.com/swordsteel/hlaeja-device-configuration) + +#### Environment + +```text +SPRING_PROFILES_ACTIVE: docker +``` + + ## Databases ### InfluxDB diff --git a/compose.yml b/compose.yml index a3a4077..f0b9339 100644 --- a/compose.yml +++ b/compose.yml @@ -53,6 +53,17 @@ services: # - ./keys/identity_public_key.pem:/app/resources/cert/public_key.pem # - ./keys/device_api_keystore.p12:/app/resources/cert/keystore.p12 + device-configuration: + image: hlaeja-device-configuration:0.1.0-SNAPSHOT + container_name: DeviceConfiguration + restart: unless-stopped + environment: + SPRING_PROFILES_ACTIVE: docker + networks: + - develop + ports: + - "9030:8080" + influxdb: image: influxdb:2.7.10-alpine container_name: InfluxDB