add DeviceConfiguration

This commit is contained in:
2024-11-30 19:20:18 +01:00
parent 31e4f88735
commit ac9fac189d
2 changed files with 22 additions and 0 deletions

View File

@@ -77,6 +77,17 @@ volumes:
- ./keys/device_api_keystore.p12:/app/resources/cert/keystore.p12 - ./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 ## Databases
### InfluxDB ### InfluxDB

View File

@@ -53,6 +53,17 @@ services:
# - ./keys/identity_public_key.pem:/app/resources/cert/public_key.pem # - ./keys/identity_public_key.pem:/app/resources/cert/public_key.pem
# - ./keys/device_api_keystore.p12:/app/resources/cert/keystore.p12 # - ./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: influxdb:
image: influxdb:2.7.10-alpine image: influxdb:2.7.10-alpine
container_name: InfluxDB container_name: InfluxDB