https://github.com/slimani-dev/docker-compose-collection
Docker Compose Collection, featuring MySQL, MeiliSearch, Socket.IO, Redis, and Other services configured for quick deployment and streamlined project setup. Happy coding!
https://github.com/slimani-dev/docker-compose-collection
Last synced: 3 months ago
JSON representation
Docker Compose Collection, featuring MySQL, MeiliSearch, Socket.IO, Redis, and Other services configured for quick deployment and streamlined project setup. Happy coding!
- Host: GitHub
- URL: https://github.com/slimani-dev/docker-compose-collection
- Owner: slimani-dev
- License: mit
- Created: 2023-12-21T00:53:06.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-05T15:07:26.000Z (about 2 years ago)
- Last Synced: 2025-10-11T13:52:56.703Z (8 months ago)
- Language: Dockerfile
- Size: 8.79 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 Collection for Web Developers
Welcome to the Docker Compose Collection for web developers! This collection includes Docker Compose configurations for common services used in web development projects. With these configurations, you can quickly set up your development environment on any system.
## Services Included
- **MySQL:** A popular relational database.
- **MeiliSearch:** A powerful, fast, and open-source search engine.
- **Socket.IO:** Real-time bidirectional event-based communication.
- **Redis:** An in-memory data structure store, used as a caching layer.
- **MongoDB:** A NoSQL database for storing and retrieving data.
Feel free to explore each service's folder for specific configurations and customization options.
## Quick Start
1. Clone this repository to your local machine:
```bash
git clone https://github.com/moh-slimani/docker-compose-collection.git
```
2. Navigate to the desired service folder, e.g., `mysql`:
```bash
cd docker-compose-collection/mysql
```
3. Copy the example environment file *(if available)*:
```bash
cp .env.example .env
```
4. Update the `.env` file with your preferred configurations.
5. Run the Docker Compose command to start the service:
```bash
docker-compose up -d
```
6. That's it! Your service is now up and running.
## Configuration
Each service folder contains a `.env.example` file with default configurations. Copy this file to `.env` and modify it according to your project's needs.
## To-Do List
- [ ] add `.env.example` file to mysql.
- [ ] add `.env.example` file to meilisearch.
- [ ] add `.env.example` file to mongo.
## Contributing
If you have improvements or additional services to contribute, feel free to submit a pull request.
## License
This Docker Compose Collection is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
Happy coding!