updating jupyter and container orders

This commit is contained in:
its-a-feature
2026-01-02 10:51:56 -06:00
parent 43a8a8580c
commit 2ca4ad507e
5 changed files with 11 additions and 6 deletions
+6
View File
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## [0.3.24] - 2026-01-02
### Changed
- Remove the automatic image pruning and moved it to just the `remove_images` command
## [0.3.23] - 2025-12-30
### Changed
+1 -1
View File
@@ -4,5 +4,5 @@ package config
var (
// Version Mythic CLI version
Version = "v0.3.23"
Version = "v0.3.24"
)
@@ -83,7 +83,6 @@ func ServiceStart(containers []string, keepVolume bool) error {
log.Printf("[-] Failed to start services: %v", err)
return err
}
err = manager.GetManager().RemoveImages()
if err != nil {
log.Printf("[-] Failed to remove images\n%v\n", err)
return err
@@ -181,6 +181,9 @@ func AddMythicService(service string, removeVolume bool) {
"mythic_postgres": {
"condition": "service_healthy",
},
"mythic_server": {
"condition": "service_healthy",
},
}
if mythicEnv.GetBool("hasura_use_build_context") {
pStruct["build"] = map[string]interface{}{
@@ -657,9 +660,6 @@ func AddMythicService(service string, removeVolume bool) {
"mythic_postgres": {
"condition": "service_healthy",
},
"mythic_graphql": {
"condition": "service_healthy",
},
"mythic_rabbitmq": {
"condition": "service_healthy",
},
+1 -1
View File
@@ -18,5 +18,5 @@ ENV JUPYTER_PORT "8888"
COPY ["jupyter/", "."]
CMD start.sh jupyter lab --ServerApp.open_browser=false --IdentityProvider.token=${JUPYTER_TOKEN:-mythic} --ServerApp.base_url="/jupyter" --ServerApp.default_url="/jupyter" --port=${JUPYTER_PORT} --ip=${JUPYTER_IP}
CMD start.sh jupyter lab --ServerApp.allow_remote_access=true --ServerApp.open_browser=false --IdentityProvider.token=${JUPYTER_TOKEN:-mythic} --ServerApp.base_url="/jupyter" --ServerApp.default_url="/jupyter" --port=${JUPYTER_PORT} --ip=${JUPYTER_IP}
# sudo docker run -p 8888:8888 -v `pwd`/jupyter:/projects jupyter