Skip to content

Commit 566afef

Browse files
martinclaude
andcommitted
Fix Docker Compose project name collision and update README
Add explicit project name 'taskflow' to docker-compose.prod.yml to prevent conflicts with other compose projects on the same VPS. Update README with correct local dev ports and modern docker compose syntax. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 4988b69 commit 566afef

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ cd taskflow-platform
123123

124124
```bash
125125
cd infrastructure/docker
126-
docker-compose up -d
126+
docker compose up -d
127127
```
128128

129129
### 3. Access the Application
@@ -136,9 +136,9 @@ docker-compose up -d
136136
- **Swagger UI**: https://taskflow.celox.io/swagger-ui.html
137137

138138
**Local Development**:
139-
- **Frontend**: http://localhost:8090
140-
- **Backend API**: http://localhost:8080/api
141-
- **Swagger UI**: http://localhost:8080/swagger-ui.html
139+
- **Frontend**: http://localhost:8091
140+
- **Backend API**: http://localhost:8082/api
141+
- **Swagger UI**: http://localhost:8082/swagger-ui.html
142142

143143
### Default Credentials
144144

@@ -205,7 +205,7 @@ mvn verify
205205

206206
**Live Demo**: [https://taskflow.celox.io/swagger-ui.html](https://taskflow.celox.io/swagger-ui.html)
207207

208-
**Local Development**: http://localhost:8080/swagger-ui.html
208+
**Local Development**: http://localhost:8082/swagger-ui.html
209209

210210
### Main Endpoints
211211

@@ -246,7 +246,7 @@ The application is deployed and running at **[https://taskflow.celox.io](https:/
246246
**Infrastructure**:
247247
- ✅ HTTPS with Let's Encrypt SSL
248248
- ✅ Nginx Reverse Proxy
249-
- ✅ Docker Compose Orchestration
249+
- ✅ Docker Compose Orchestration (named project: `taskflow`)
250250
- ✅ PostgreSQL 15 Database
251251
- ✅ Apache Kafka Event Streaming
252252
- ✅ Automated Certificate Renewal
@@ -272,7 +272,7 @@ docker build -t taskflow/frontend:latest .
272272

273273
```bash
274274
cd infrastructure/docker
275-
docker-compose up -d
275+
docker compose up -d
276276
```
277277

278278
## 📖 Documentation

infrastructure/docker/docker-compose.prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '3.8'
1+
name: taskflow
22

33
services:
44
zookeeper:

0 commit comments

Comments
 (0)