Skip to content

Commit

Permalink
Merge pull request #113 from Patlenlix/BugFix-v1.0.1
Browse files Browse the repository at this point in the history
Bugfix release v1.0.1
  • Loading branch information
LordRekishi committed Mar 31, 2022
2 parents 8628fa5 + c18eb95 commit fa513b9
Showing 1 changed file with 16 additions and 18 deletions.
34 changes: 16 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,24 +65,22 @@ have different degree of access throughout the application.
version: '3.8'
services:
backend:
image: crimedb-image
container_name: crimedb
build: ghcr.io/patlenlix/crimedatabase:latest
ports:
- "8080:8080"
environment:
- SPRING_RABBITMQ_HOST=rabbitmq
depends_on:
- rabbitmq
rabbitmq:
image: rabbitmq:3-management
container_name: rabbitmq
restart: always
ports:
- "15672:15672"
- "5672:5672"
backend:
image: ghcr.io/patlenlix/crimedatabase:latest
ports:
- "8080:8080"
environment:
- SPRING_RABBITMQ_HOST=rabbitmq
depends_on:
- rabbitmq
rabbitmq:
image: rabbitmq:3-management
container_name: rabbitmq
restart: always
ports:
- "15672:15672"
- "5672:5672"
```

**RUN APPLICATION: ALTERNATIVE 2**
Expand Down

0 comments on commit fa513b9

Please sign in to comment.