Skip to content

Commit 89593b3

Browse files
authored
fix: update ports to match vm
1 parent e9547ba commit 89593b3

2 files changed

Lines changed: 3 additions & 11 deletions

File tree

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ services:
1212
- TENTRIS_RDF_FILE=/app/instance_data.ttl
1313

1414
ports:
15-
- "9080:9080"
15+
- "7502:9080"
1616

1717
volumes:
1818
- ./src/tentris-server/tentris-license.toml:/config/tentris-license.toml:ro

src/tentris-server/README.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,8 @@ Copy and paste the command below. This will:
1919
- Mount your license, config, and data files.
2020
- Mount the empty data directory for persistence.
2121
- Tell the container to load your instance_data.ttl on its first run.
22-
22+
- Run the container in detached mode
2323

2424
```bash
25-
docker run -d \
26-
-p 9080:9080 \
27-
--name hackathon-db \
28-
-v "$(pwd)/tentris-license.toml:/config/tentris-license.toml:ro" \
29-
-v "$(pwd)/tentris-server-config.toml:/config/tentris-server-config.toml:ro" \
30-
-v "$(pwd)/data:/data" \
31-
-v "$(pwd)/instance_data.ttl:/app/instance_data.ttl:ro" \
32-
-e "TENTRIS_RDF_FILE=/app/instance_data.ttl" \
33-
ghcr.io/tentris/tentris:latest
25+
docker compose up -d
3426
```

0 commit comments

Comments
 (0)