Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Container control buttons #649

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

mizady
Copy link

@mizady mizady commented Oct 28, 2024

⚠️⚠️⚠️ Since we do not accept all types of pull requests and do not want to waste your time. Please be sure that you have read pull request rules:
https://github.com/louislam/dockge/blob/master/CONTRIBUTING.md

Tick the checkbox if you understand [x]:

  • I have read and understand the pull request rules.

Description

New Feature - Control of individual containers for starting, stopping, and restarting.

Fixes #(issue)
Fixes having to restart or stop and start the entire stack when you just want to do one container

Type of change

  • User interface (UI)
  • New feature (non-breaking change which adds functionality)
  • This change requires a documentation update (only to change a screenshot so the service buttons are shown)

Checklist

  • My code follows the style guidelines of this project
  • I ran ESLint and other linters for modified files (I didn't run it but the minor modifications kept to already used patterns and practices)
  • I have performed a self-review of my own code and tested it
  • I have commented my code, particularly in hard-to-understand areas
    (including JSDoc for methods)
  • My changes generate no new warnings
  • My code needed automated testing. I have added them (this is optional task)

Screenshots (if any)

Screenshot 2024-10-28 091747
Screenshot 2024-10-28 091922

mizady added 4 commits August 8, 2024 13:30
Added start and stop service buttons for each service in a stack by changes to the container and compose components as well as the socket handler and the stack class.
added restart service/container button as well as fixed start/stop buttons for correct statuses of healthy/unhealthy
@mizady
Copy link
Author

mizady commented Oct 28, 2024

I didn't have any of the errors coming up in the checks when i built it or when i ran the built docker container on my end. Most all of those errors appear to be code I did not modify so I'm not sure if that is relevant to these modifications.

swapped to double quotes from singles on service functions
@Chathula
Copy link

Waiting for this!

@Chathula
Copy link

Chathula commented Nov 14, 2024

@louislam why we don't merge this pr?

@xHyperElectric
Copy link

@louislam please merge this, this feature is the only feature I think is missing from dockge

@M3BAID
Copy link

M3BAID commented Dec 2, 2024

Waiting for this to be in the Image.

@cmcooper1980
Copy link

@Chathula, @M3BAID I was curious about this being merged too...however, if you haven't forked and merged this yourself and curious to see controls, feel free to pull from my fork...I merged a bunch of PRs that looked interesting or at least the ones I was interested in...

@louislam louislam added this to the 1.6.0 milestone Dec 27, 2024
@wsw70
Copy link

wsw70 commented Feb 17, 2025

Could this please be merged? This is a very much required feature that will really make dockge stand out.

@Triskae
Copy link

Triskae commented Feb 24, 2025

I tried this when merged on my fork, and seem to have no effect on the containers ...

@mizady
Copy link
Author

mizady commented Feb 25, 2025

@Triskae not sure if anything changed as there has been some version changes to a lot of packages and I have not updated and tested my dockge docker build as I spent far longer than i'd like to admit getting it to build on my test system at the time. I did put a docker image up on docker hub thejericko/dockge:latest but like I said it's not the latest dockge version since the update was released right after I built that.

@Triskae
Copy link

Triskae commented Feb 25, 2025

@Triskae not sure if anything changed as there has been some version changes to a lot of packages and I have not updated and tested my dockge docker build as I spent far longer than i'd like to admit getting it to build on my test system at the time. I did put a docker image up on docker hub thejericko/dockge:latest but like I said it's not the latest dockge version since the update was released right after I built that.

I understand, I will take a look if can make it work ! Or if you want, you can take a look too.

I spent far longer than i'd like to admit getting it to build on my test system

Ooooh yeah me too .... on macos with M2 Chip impossible for me to getting it to build, had to create a linux VM ....

cmcooper1980 added a commit to cmcooper1980/dockge that referenced this pull request Feb 26, 2025
tobi1449 added a commit to tobi1449/dockge that referenced this pull request Feb 26, 2025
tobi1449 added a commit to tobi1449/dockge that referenced this pull request Mar 1, 2025
@tobi1449
Copy link

tobi1449 commented Mar 1, 2025

FYI, when testing this I noticed that I'm getting quite a few JS warnings in my browser.
Add the new "processing" prop and the "start-service", "stop-service" and "restart-service" events to the container component seemed to fix them (see tobi1449@ee0c54b).

stack.joinCombinedTerminal(socket); // Ensure the combined terminal is joined
callbackResult({
ok: true,
msg: "Service" + serviceName + " started"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
msg: "Service" + serviceName + " started"
msg: "Service " + serviceName + " started"

await stack.stopService(socket, serviceName);
callbackResult({
ok: true,
msg: "Service" + serviceName + " stopped"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
msg: "Service" + serviceName + " stopped"
msg: "Service " + serviceName + " stopped"

await stack.restartService(socket, serviceName);
callbackResult({
ok: true,
msg: "Service" + serviceName + " restarted"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
msg: "Service" + serviceName + " restarted"
msg: "Service " + serviceName + " restarted"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

9 participants