Skip to content

Commit 6fa695d

Browse files
Update README.md
1 parent 1f23c0a commit 6fa695d

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,17 @@ A collection of Docker Compose files I've used to quickly spin local databases o
77
Because I've oft needed them, particularly when I just don't wanna deal with the hassle of spinning up a DB on my own system.
88

99
## How?
10-
Clone the repo or copy a `docker-compose.yml` file to your system, `cd` into that directory, and turn it on with `docker-compose up`. For a full reference on how to use Docker Compose, [go here](https://docs.docker.com/compose/reference/).
10+
Clone the repo or copy a `docker-compose.yml` file to your system, `cd` into that directory, and turn it on with `docker-compose up`. You may also use a `docker-compose.override.yml` file inside this repository to customize a container. For a full reference on how to use Docker Compose, [go here](https://docs.docker.com/compose/reference/).
1111

1212
## Local Persistence
13-
In each setup a docker managed volume is created to persist the database. This can be deleted by Docker compose by passing the "-v" option when deleting the container(s).
13+
In each setup, a managed volume is created to persist each container's data. This volume can be deleted by passing the `-v` option when deleting the container.
1414

1515
```
1616
docker-compose down -v
1717
```
1818

1919
## Authentication
20-
For authenticating as super user with each of these examples, `root` should be the username and `password` should be the password.
20+
For authenticating as super user with each of these examples, `root` is the username and `password` is the password.
21+
22+
## Contributions
23+
If you have a Docker Compose configuration for a database not seen here, please consider making a pull request to add it!

0 commit comments

Comments
 (0)