Skip to content

Commit

Permalink
docs: update README
Browse files Browse the repository at this point in the history
  • Loading branch information
bendavies99 committed Jun 7, 2023
1 parent 447311c commit 92aaca3
Showing 1 changed file with 34 additions and 33 deletions.
67 changes: 34 additions & 33 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,43 +72,44 @@ NOTE: The emoji "🚧" means that the current features are under heavy developme
version: '2.8'

volumes:
db-data:
plugins:
db-data:
plugins:

networks:
bb:
bb:

services:
db:
container_name: db
image: postgres:latest
restart: unless-stopped
environment:
POSTGRES_PASSWORD: 'password-goes-here'
POSTGRES_USER: 'dbadmin'
POSTGRES_DB: 'babblebot'
ports:
- "5432:5432"
volumes:
- db-data:/var/lib/postgresql/data
networks:
- bb
babblebot-server:
container_name: babblebot-server
image: bendavies99/babblebot-server:latest
restart: unless-stopped
environment:
spring.datasource.driver-class-name: 'org.postgresql.Driver'
spring.datasource.url: 'jdbc:postgresql://db/babblebot'
spring.datasource.username: 'dbadmin'
spring.datasource.password: 'password-goes-here'
spring.jpa.hibernate.ddl-auto: 'update'
volumes:
- plugins:/workspace/plugins
ports:
- "21132:8080"
networks:
- bb
db:
container_name: db
image: postgres:latest
restart: unless-stopped
environment:
POSTGRES_PASSWORD: 'password-goes-here'
POSTGRES_USER: 'dbadmin'
POSTGRES_DB: 'babblebot'
ports:
- "5432:5432"
volumes:
- db-data:/var/lib/postgresql/data
networks:
- bb
babblebot-server:
container_name: babblebot-server
image: bendavies99/babblebot-server:latest
restart: unless-stopped
environment:
spring.datasource.driver-class-name: 'org.postgresql.Driver'
spring.datasource.url: 'jdbc:postgresql://db/babblebot'
spring.datasource.username: 'dbadmin'
spring.datasource.password: 'password-goes-here'
spring.jpa.hibernate.ddl-auto: 'update'
DISCORD_TOKEN: 'token-goes-here'
volumes:
- plugins:/workspace/plugins
ports:
- "21132:8080"
networks:
- bb
```
## Configuration
Expand Down

0 comments on commit 92aaca3

Please sign in to comment.