{"id":19819597,"url":"https://github.com/kiran-kumar-k3/vulnweb-docker","last_synced_at":"2025-09-18T07:31:09.104Z","repository":{"id":207049463,"uuid":"678476836","full_name":"KIRAN-KUMAR-K3/vulnweb-docker","owner":"KIRAN-KUMAR-K3","description":"A Docker Compose setup for easily deploying and managing a local WordPress site with a MySQL database","archived":false,"fork":false,"pushed_at":"2024-08-04T06:31:56.000Z","size":12,"stargazers_count":2,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-11-12T10:20:48.775Z","etag":null,"topics":["docker","dockerfile","testing","worddpress"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/KIRAN-KUMAR-K3.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-08-14T16:32:43.000Z","updated_at":"2024-10-03T19:41:14.000Z","dependencies_parsed_at":"2023-11-13T21:28:46.360Z","dependency_job_id":"c1e8b15a-bc85-4459-86ce-11a1b56fce64","html_url":"https://github.com/KIRAN-KUMAR-K3/vulnweb-docker","commit_stats":null,"previous_names":["kiran-kumar-k3/docker","kiran-kumar-k3/vulnweb-docker"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KIRAN-KUMAR-K3%2Fvulnweb-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KIRAN-KUMAR-K3%2Fvulnweb-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KIRAN-KUMAR-K3%2Fvulnweb-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KIRAN-KUMAR-K3%2Fvulnweb-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KIRAN-KUMAR-K3","download_url":"https://codeload.github.com/KIRAN-KUMAR-K3/vulnweb-docker/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":233457215,"owners_count":18679145,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","dockerfile","testing","worddpress"],"created_at":"2024-11-12T10:19:28.581Z","updated_at":"2025-09-18T07:31:03.751Z","avatar_url":"https://github.com/KIRAN-KUMAR-K3.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# 🚀 Docker WordPress Setup\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://unbiased-coder.com/wp-content/uploads/2022/08/Wordpress-Docker.png\" alt=\"WordPress Docker\" width=\"200\"/\u003e\n\u003c/p\u003e\n\nEasily set up and host a WordPress site on your local machine using Docker Compose. This project provides a seamless configuration to get you started quickly.\n\n## 📋 Table of Contents\n\n- [Introduction](#introduction)\n- [Features](#features)\n- [Prerequisites](#prerequisites)\n- [Setup Instructions](#setup-instructions)\n  - [Clone the Repository](#clone-the-repository)\n  - [Navigate to Project Directory](#navigate-to-project-directory)\n  - [Start the Services](#start-the-services)\n- [Accessing WordPress](#accessing-wordpress)\n- [Managing the Services](#managing-the-services)\n  - [Stopping the Services](#stopping-the-services)\n  - [Viewing Logs](#viewing-logs)\n  - [Restarting the Services](#restarting-the-services)\n- [License](#license)\n- [Conclusion](#conclusion)\n\n## 🌟 Introduction\n\nThis project leverages Docker Compose to create a local WordPress development environment. It includes a MySQL database service and a WordPress service configured to work together seamlessly.\n\n## ✨ Features\n\n- **Quick Setup**: Get your WordPress site up and running in minutes.\n- **Persistent Data**: Data is stored persistently using Docker volumes.\n- **Easy Management**: Easily start, stop, and manage your WordPress and MySQL services.\n\n## 📌 Prerequisites\n\nBefore you begin, ensure that you have Docker and Docker Compose installed on your machine. You can download and install them from the [official Docker website](https://www.docker.com/get-started).\n\n## 🛠️ Setup Instructions\n\n### 🌀 Clone the Repository\n\nFirst, clone this repository to your local machine:\n\n```bash\ngit clone https://github.com/KIRAN-KUMAR-K3/vulnweb-docker.git\n```\n\n### 📂 Navigate to Project Directory\n\nNavigate into the project directory:\n\n```bash\ncd vulnweb-docker\n```\n\n### ▶️ Start the Services\n\nStart the WordPress and MySQL services using Docker Compose:\n\n```bash\ndocker-compose up -d\n```\n\nThe `-d` flag runs the containers in detached mode, allowing you to continue using your terminal.\n\n## 🌐 Accessing WordPress\n\nOnce the services are up and running, you can access your WordPress site by opening your web browser and navigating to:\n\n```\nhttp://localhost\n```\n\n## 🔧 Managing the Services\n\n### ⏹️ Stopping the Services\n\nTo stop and remove the services, use the following command:\n\n```bash\ndocker-compose down\n```\n\nThis command stops the containers and removes the associated networks but preserves the volumes for persistent data.\n\n### 📜 Viewing Logs\n\nIf you need to view the logs for any of the services, use:\n\n```bash\ndocker-compose logs\n```\n\nYou can also view logs for a specific service by specifying the service name:\n\n```bash\ndocker-compose logs wordpress\n```\n\n### 🔄 Restarting the Services\n\nTo restart the services, first stop them and then start them again:\n\n```bash\ndocker-compose down\ndocker-compose up -d\n```\n\n## 📝 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## 📚 Conclusion\n\nThis Docker Compose setup provides an efficient way to run a WordPress site with a MySQL database locally. With Docker Compose, you can easily manage the services, ensuring a smooth and hassle-free development experience.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkiran-kumar-k3%2Fvulnweb-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkiran-kumar-k3%2Fvulnweb-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkiran-kumar-k3%2Fvulnweb-docker/lists"}