{"id":29481039,"url":"https://github.com/yacinemk/podsy","last_synced_at":"2025-07-16T00:02:27.438Z","repository":{"id":304031533,"uuid":"1016580079","full_name":"YacineMK/Podsy","owner":"YacineMK","description":"Podsy is a lightweight CLI tool that lets you orchestrate Podman containers using simple YAML files inspired by Docker Compose, built with Go.","archived":false,"fork":false,"pushed_at":"2025-07-10T18:19:12.000Z","size":2686,"stargazers_count":15,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-11T00:47:29.276Z","etag":null,"topics":["cli","containers","devops","golang","podman","yaml"],"latest_commit_sha":null,"homepage":"","language":"Go","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/YacineMK.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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,"zenodo":null}},"created_at":"2025-07-09T08:12:49.000Z","updated_at":"2025-07-10T22:49:39.000Z","dependencies_parsed_at":"2025-07-11T00:47:44.537Z","dependency_job_id":"3a074215-dcca-493b-8292-a2e1aa59bd50","html_url":"https://github.com/YacineMK/Podsy","commit_stats":null,"previous_names":["yacinemk/podsy"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/YacineMK/Podsy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YacineMK%2FPodsy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YacineMK%2FPodsy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YacineMK%2FPodsy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YacineMK%2FPodsy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/YacineMK","download_url":"https://codeload.github.com/YacineMK/Podsy/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YacineMK%2FPodsy/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265375539,"owners_count":23755255,"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":["cli","containers","devops","golang","podman","yaml"],"created_at":"2025-07-14T23:55:27.146Z","updated_at":"2025-07-14T23:55:30.112Z","avatar_url":"https://github.com/YacineMK.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Podsy\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"doc/podsy.png\" alt=\"Podsy Logo\" width=\"200\"/\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cb\u003eA lightweight Podman Compose alternative for managing multi-container applications\u003c/b\u003e\n\u003c/p\u003e\n\n## 🚀 Overview\n\nPodsy is a developer-friendly CLI orchestrator that brings Docker Compose-style workflows to Podman. It lets you define multi-container applications in simple YAML files and run them with a single command.\n\n## ✨ Features\n\n- **Simple YAML Configuration**: Define your multi-container setup in a single file\n- **Podman Integration**: Leverages Podman's rootless containers for better security\n- **Resource Management**: Handles networks, volumes, secrets, and configs\n- **Self-updating**: Easy updates to the latest version with a single command\n\n## 📥 Installation\n\n### Using Pre-built Binaries\n\nDownload the latest release from [GitHub Releases](https://github.com/YacineMK/Podsy/releases).\n\n```bash\n# Download the binary\ncurl -L -o podsy https://github.com/YacineMK/Podsy/releases/latest/download/podsy-linux-amd64\n\n# Make it executable\nchmod +x podsy\n\n# Move to a directory in your PATH\nsudo mv podsy /usr/local/bin/\n```\n\n### Building from Source\n\n```bash\n# Clone the repository\ngit clone https://github.com/YacineMK/Podsy.git\ncd Podsy\n\n# Build\nmake build\n\n# Install\nsudo cp dist/podsy /usr/local/bin/\n```\n\n## 🛠️ Quick Start\n\n1. Create a `podman-compose.yaml` file:\n\n```yaml\nversion: \"0.0.1\"\n\nservices:\n  web:\n    image: nginx:alpine\n    ports:\n      - \"8080:80\"\n    volumes:\n      - web-content:/usr/share/nginx/html:ro\n    networks:\n      - podman\n\n  redis:\n    image: redis:alpine\n    networks:\n      - podman\n    volumes:\n      - redis-data:/data\n\nnetworks:\n  podman:\n    external: true\n    name: podman\n\nvolumes:\n  web-content:\n  redis-data:\n```\n\n2. Start your application:\n\n```bash\npodsy up\n```\n\n3. Stop your application:\n\n```bash\npodsy down\n```\n\n## 📖 Command Reference\n\n### `podsy up`\n\nStart services defined in a Podman compose file.\n\n```bash\npodsy up [--file/-f filename]\n```\n\n### `podsy down`\n\nStop and remove containers (without deleting volumes, configs, or networks).\n\n```bash\npodsy down [--file/-f filename]\n```\n\n### `podsy validate`\n\nValidate a Podman Compose YAML file.\n\n```bash\npodsy validate [--file/-f filename]\n```\n\n### `podsy config`\n\nEdit Podman registry configuration file.\n\n```bash\npodsy config\n```\n\n### `podsy update`\n\nCheck for updates and upgrade Podsy to the latest version.\n\n```bash\npodsy update\n```\n\n### `podsy version`\n\nPrint the version of Podsy.\n\n```bash\npodsy version\n```\n\n## 🧩 Advanced Features\n\n### Using Secrets and Configs\n\nPodsy supports Docker Compose-style secrets and configs:\n\n```yaml\nservices:\n  web:\n    image: nginx:alpine\n    secrets:\n      - source: web_secret\n    configs:\n      - source: web_config\n\nsecrets:\n  web_secret:\n    file: ./secret.txt\n\nconfigs:\n  web_config:\n    file: ./nginx.conf\n```\n\n## 🤝 Contributing\n\nContributions are welcome! Please see our [Contributing Guide](CONTRIBUTING.md) for more details.\n\n## 📄 License\n\nPodsy is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyacinemk%2Fpodsy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyacinemk%2Fpodsy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyacinemk%2Fpodsy/lists"}