Fix parameters bug + installation issues

This commit is contained in:
Tanguy Duhamel
2025-09-30 12:10:47 +02:00
parent 6de122ba2a
commit 724064dfaa
14 changed files with 3060 additions and 101 deletions
+1 -1
View File
@@ -189,7 +189,7 @@ services:
Example configuration:
```bash
COMPOSE_PROJECT_NAME=fuzzforge_alpha
COMPOSE_PROJECT_NAME=fuzzforge
DATABASE_URL=postgresql://postgres:postgres@postgres:5432/fuzzforge
PREFECT_API_URL=http://prefect-server:4200/api
DOCKER_REGISTRY=localhost:5001
+1 -1
View File
@@ -111,7 +111,7 @@ Example volume mount:
```yaml
volumes:
- "/host/path/to/code:/app/target:ro"
- "fuzzforge_alpha_prefect_storage:/app/prefect"
- "fuzzforge_prefect_storage:/app/prefect"
```
### Volume Security
+1 -1
View File
@@ -197,7 +197,7 @@ Docker cant access the path you provided.
- Check Docker network configuration:
```bash
docker network ls
docker network inspect fuzzforge_alpha_default
docker network inspect fuzzforge_default
```
- Recreate the network:
```bash
+1 -1
View File
@@ -24,7 +24,7 @@ cd fuzzforge
Create the required environment configuration:
```bash
echo "COMPOSE_PROJECT_NAME=fuzzforge_alpha" > .env
echo "COMPOSE_PROJECT_NAME=fuzzforge" > .env
```
## Step 2: Configure Docker (Critical Step)