Hlæja concept v0.4.0

This commit is contained in:
2025-01-02 07:32:55 +01:00
parent 4052404120
commit e2b0c475fc
4 changed files with 81 additions and 16 deletions

View File

@@ -8,7 +8,7 @@ networks:
services:
device-registry:
image: hlaeja-device-registry:0.3.0
image: hlaeja-device-registry:0.4.0
container_name: DeviceRegistry
restart: unless-stopped
environment:
@@ -45,7 +45,7 @@ services:
- 9030:8080
device-api:
image: hlaeja-device-api:0.3.0
image: hlaeja-device-api:0.4.0
container_name: DeviceApi
restart: unless-stopped
environment:
@@ -61,7 +61,7 @@ services:
- ./cert/device_api_keystore.p12:/app/resources/cert/keystore.p12
registry-api:
image: hlaeja-registry-api:0.1.0
image: hlaeja-registry-api:0.2.0
container_name: RegistryApi
restart: unless-stopped
environment:
@@ -71,6 +71,21 @@ services:
- develop
ports:
- 9040:8443
# mount a local `registry_api_keystore.p12` into the container.
# mount a local `account_public_key.pem` and `registry_api_keystore.p12` into the container.
volumes:
- ./cert/registry_api_keystore.p12:/app/resources/cert/keystore.p12
- ./cert/account_public_key.pem:/app/resources/cert/public_key.pem
account-registry:
image: hlaeja-account-registry:0.1.0
container_name: AccountRegistry
restart: unless-stopped
environment:
SPRING_PROFILES_ACTIVE: docker
networks:
- develop
ports:
- 9050:8080
# mount a local `account_private_key.pem` into the container.
volumes:
- ./cert/account_private_key.pem:/app/resources/cert/private_key.pem