{"id":13357823,"url":"https://github.com/ProductiveOps/dokemon","last_synced_at":"2025-03-12T11:31:01.741Z","repository":{"id":210558839,"uuid":"726820564","full_name":"productiveops/dokemon","owner":"productiveops","description":"Docker Container Management GUI","archived":false,"fork":false,"pushed_at":"2024-02-21T10:51:14.000Z","size":647,"stargazers_count":682,"open_issues_count":17,"forks_count":25,"subscribers_count":6,"default_branch":"main","last_synced_at":"2024-11-06T20:44:25.575Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://dokemon.dev","language":"TypeScript","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/productiveops.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-12-03T13:58:45.000Z","updated_at":"2024-11-06T00:26:28.000Z","dependencies_parsed_at":"2024-02-07T06:26:17.590Z","dependency_job_id":"fc25f28f-9db9-4ce6-8730-c39665516aaf","html_url":"https://github.com/productiveops/dokemon","commit_stats":null,"previous_names":["productiveops/dokemon"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/productiveops%2Fdokemon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/productiveops%2Fdokemon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/productiveops%2Fdokemon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/productiveops%2Fdokemon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/productiveops","download_url":"https://codeload.github.com/productiveops/dokemon/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243208825,"owners_count":20254117,"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":[],"created_at":"2024-07-29T21:03:19.672Z","updated_at":"2025-03-12T11:31:01.230Z","avatar_url":"https://github.com/productiveops.png","language":"TypeScript","readme":"![Alt text](/screenshots/dokemon-light.svg?raw=true \"Dokemon Logo\")\n\nDokémon is a friendly GUI for managing Docker Containers. You can manage multiple servers from a single Dokemon instance.\n\nCheck https://dokemon.dev for more details.\n\n## Quickstart\n\nYou can run the below commands to quickly try out Dokémon.\n\n**Note:** Whenever possible, it is recommended that you run Dokémon in a private network and do not expose it to the Internet. In cases where this is not possible, for example when running on a VPS to which you only have public access, you should run Dokémon behind an SSL enabled reverse proxy and use a strong password for maximum security. Refer the next section for sample configuration using Traefik.\n\n    # Create directory to store Dokemon data\n    mkdir ./dokemondata\n\n    # Run Dokemon\n    sudo docker run -p 9090:9090 \\\n                -v ./dokemondata:/data \\\n                -v /var/run/docker.sock:/var/run/docker.sock \\\n                --restart unless-stopped \\\n                --name dokemon -d productiveops/dokemon:latest\n\n## Using Traefik with LetsEncrypt SSL certificate\n\nThis is an example configuration for running Dokémon behind Traefik with LetsEncrypt SSL certificate.\n\n**Note:** This is a sample configuration. Please modify it as per your requirements.\n\n    version: \"3.3\"\n\n    services:\n      traefik:\n        image: \"traefik:v2.10\"\n        container_name: \"traefik\"\n        command:\n          - \"--log.level=DEBUG\"\n          - \"--accesslog=true\"\n          - \"--api.insecure=true\"\n          - \"--providers.docker=true\"\n          - \"--providers.docker.exposedbydefault=false\"\n          - \"--entrypoints.websecure.address=:443\"\n          - \"--certificatesresolvers.dokemon.acme.tlschallenge=true\"\n          - \"--certificatesresolvers.dokemon.acme.email=your.email@example.com\"\n          - \"--certificatesresolvers.dokemon.acme.storage=/letsencrypt/dokemon.json\"\n        ports:\n          - \"443:443\"\n          - \"8080:8080\"\n        volumes:\n          - \"./letsencrypt:/letsencrypt\"\n          - \"/var/run/docker.sock:/var/run/docker.sock:ro\"\n\n      dokemon:\n        image: productiveops/dokemon:latest\n        container_name: dokemon\n        restart: unless-stopped\n        labels:\n          - \"traefik.enable=true\"\n          - \"traefik.http.routers.dokemon.rule=Host(`dokemon.example.com`)\"\n          - \"traefik.http.routers.dokemon.entrypoints=websecure\"\n          - \"traefik.http.routers.dokemon.tls.certresolver=dokemon\"\n        ports:\n          - 9090:9090\n        volumes:\n          - ./dokemondata:/data\n          - /var/run/docker.sock:/var/run/docker.sock\n\nIn the DNS settings for your domain, add an A record for the _Host_ which you have mentioned in the above config. The A record should point to the public IP address of your virtual machine.\n\n1. Create a file named `compose.yaml` on your server. Copy and paste the above YAML definition into the file. Modify the email and host. Make any other changes as per your requirements.\n2. Run `mkdir ./letsencrypt \u0026\u0026 mkdir ./dokemondata`\n3. Run `docker compose up -d`\n\nOpen https://dokemon.example.com (substitute your URL here which you entered as Host in the compose.yaml file) in the browser. It can take a few seconds for the SSL certificate to be provisioned. If you get an error related to SSL, please wait for a few moments and then refresh your browser.\n\n## Screenshots\n\n### Manage Multiple Servers\n\n![Alt text](/screenshots/screenshot-dokemon-nodes.jpg?raw=true \"Dokemon Nodes\")\n\n### Manage Variables for Different Environments\n\n![Alt text](/screenshots/screenshot-dokemon-variables.jpg?raw=true \"Dokemon Variables\")\n\n### Deploy Compose Projects\n\n![Alt text](/screenshots/screenshot-dokemon-compose-up.jpg?raw=true \"Dokemon Compose Up\")\n\n### Manage Containers, Images, Volumes, Networks\n\n![Alt text](/screenshots/screenshot-dokemon-containers.jpg?raw=true \"Dokemon Containers\")\n\n## License\n\nThis project is [MIT Licensed](LICENSE).\n","funding_links":[],"categories":["Container Operations"],"sub_categories":["User Interface"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FProductiveOps%2Fdokemon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FProductiveOps%2Fdokemon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FProductiveOps%2Fdokemon/lists"}