https://github.com/christian80gabi/docker-compose
A set of docker-compose files for a variety of project
https://github.com/christian80gabi/docker-compose
docker docker-compose yaml-files
Last synced: 4 months ago
JSON representation
A set of docker-compose files for a variety of project
- Host: GitHub
- URL: https://github.com/christian80gabi/docker-compose
- Owner: christian80gabi
- License: mit
- Created: 2024-01-20T17:20:28.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-20T18:06:55.000Z (over 1 year ago)
- Last Synced: 2025-06-20T03:44:30.217Z (4 months ago)
- Topics: docker, docker-compose, yaml-files
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-compose
A set of docker-compose files for a variety of project### Requirements
You must have installed and set on your computer:
- [Docker](https://www.docker.com/get-started/)
- [Docker Compose](https://docs.docker.com/compose/). Should already be installed with docker.### How to use it
- Add a docker-compose.yml file under the root directory of your project.
- Add the content of the docker-compose file
- under the folder where reside the docker-compose file, run the command `docker compose up`.```shell
# Execute the docker-compose file, create and configure the containers
$ docker compose up -d
# `-d` for detach. That run the command on background# Start the services (containers) set in the compose file
$ docker compose start# Stop the services (containers) set in the compose file
$ docker compose stop# Remove all the services (containers) set in the compose file
$ docker compose down
```### MySQL
[docker-compose.yml](/mysql.docker-compose.yml)
### PostgreSQL (Alpine Linux Container)
[docker-compose.yml](/postgres.docker-compose.yml)
### PostgreSQL + PGadmin
[docker-compose.yml](/postgres.pgadmin.docker-compose.yml)
### PostgreSQL + Adminer
[docker-compose.yml](/postgres.adminer.docker-compose.yml)
### Collaboration
Please submit your pull requests. They are all WELCOME.
> Together for a World even BETTER.Main maintainer [christian80gabi](https://github.com/christian80gabi)
This project is under the [MIT Licence](/LICENSE).