Skip to content

Commit

Permalink
docs: update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
aacevski committed Feb 22, 2025
1 parent 3c0f4ce commit 3071ad7
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,15 @@ services:
environment:
JWT_ACCESS: "change_me"
DB_PATH: "/app/apps/api/data/kaneo.db"
RABBITMQ_URL: "amqp://guest:guest@rabbitmq:5672"
ports:
- 1337:1337
restart: unless-stopped
volumes:
- sqlite_data:/app/apps/api/data
depends_on:
rabbitmq:
condition: service_healthy

frontend:
image: ghcr.io/kaneo-app/web:latest
Expand All @@ -59,9 +64,28 @@ services:
- 5173:80
depends_on:
- backend
restart: unless-stopped

rabbitmq:
image: rabbitmq:3-management
ports:
- "5672:5672"
- "15672:15672"
environment:
- RABBITMQ_DEFAULT_USER=guest
- RABBITMQ_DEFAULT_PASS=guest
volumes:
- rabbitmq_data:/var/lib/rabbitmq
healthcheck:
test: ["CMD", "rabbitmq-diagnostics", "-q", "ping"]
interval: 10s
timeout: 5s
retries: 5
restart: unless-stopped

volumes:
sqlite_data:
rabbitmq_data:
```
2. Run `docker compose up -d` to start the services.
Expand Down

0 comments on commit 3071ad7

Please sign in to comment.