Skip to content

Commit

Permalink
adding docker-compose for demo and for building
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderWollbrink committed Sep 21, 2023
1 parent 52b813e commit 4fa4376
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
11 changes: 11 additions & 0 deletions src/docker/docker-compose-demo.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
services:
aasx-server:
container_name: aasx-server
hostname: aasx-server
image: adminshellio/aasx-server-blazor-for-demo:v3latest
restart: unless-stopped
ports:
- "5001:5001"
volumes:
- ./aasxs:/usr/share/aasxs
command: --start-index 0 --no-security --edit --data-path /usr/share/aasxs --external-blazor http://localhost:5001
8 changes: 6 additions & 2 deletions src/docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@ services:
aasx-server:
container_name: aasx-server
hostname: aasx-server
image: adminshellio/aasx-server-blazor-for-demo:v3latest
build:
context: ./../..
dockerfile: ./src/docker/Dockerfile-AasxServerBlazor
restart: unless-stopped
ports:
- "5001:5001"
command: --start-index 0 --no-security --edit --data-path /usr/share/aasxs --external-blazor http://localhost:5001
volumes:
- ./aasxs:/usr/share/aasxs
command: --start-index 0 --no-security --edit --data-path /usr/share/aasxs --external-blazor http://localhost:5001

0 comments on commit 4fa4376

Please sign in to comment.