Skip to content

Commit

Permalink
docker: align playground compose with upstream VISSR compose
Browse files Browse the repository at this point in the history
The VISSR submodule has been updated to point at the upstream head
Commit. As a result integrate changes in the upstream VISSR docker
compose docker-compose-rl.yml into the VISSR services of the
playground compose.

Successfully sanity tested with get/set operation using the VISSR html
client.

Signed-off-by: Stephen Lawrence <[email protected]>
  • Loading branch information
slawr committed Apr 8, 2024
1 parent 7390abb commit 5f7ace6
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions docker/docker-compose-waii-iotdb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ services:

tmp:
image: busybox
container_name: waii_container_volumes
container_name: vissr_container_volumes
user: root
command: >
chmod -R 777 /tmp/docker/
Expand All @@ -48,20 +48,24 @@ services:
user: root
command: redis-server /etc/redis.conf
volumes:
- ../cdsp/automotive-viss2/redis/redis.conf:/etc/redis.conf
- ../cdsp/vissr/redis/redis.conf:/etc/redis.conf
volumes_from:
- tmp

vissv2server:
container_name: vissv2server
depends_on:
- redis
build:
context: ../cdsp/automotive-viss2 # context set to repo root
context: ../cdsp/vissr # context set to repo root
dockerfile: Dockerfile.rlserver
target: vissv2server
entrypoint: [ /app/vissv2server,-s,redis]
entrypoint: [ /app/vissv2server,-s,apache-iotdb]
ports:
- "127.0.0.1:8081:8081"
- "0.0.0.0:8081:8081"
- "127.0.0.1:8888:8888"
- "127.0.0.1:8887:8887"
- "0.0.0.0:8887:8887"
- "0.0.0.0:8600:8600"
volumes:
- ./logs:/app/logs
volumes_from:
Expand Down

0 comments on commit 5f7ace6

Please sign in to comment.