From 67edcc188e39051c9fbf167ad79baea116b47e93 Mon Sep 17 00:00:00 2001 From: Rayyan Ahmed Date: Fri, 14 Feb 2025 05:55:00 -0700 Subject: [PATCH 1/3] fixed errors in readme --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c395b2e..3dc4c55 100644 --- a/README.md +++ b/README.md @@ -12,13 +12,13 @@ Containerized tools for on-the-go troubleshooting and developing in alien enviro By: Garth Johnson & others -The purpose of this container image is to provide tools that can help diagnose issues and ease/simplify development struggles on alien envirnments. +The purpose of this container image is to provide tools that can help diagnose issues and ease/simplify development struggles on alien environments. Additionally, this container image can easily used for: - developing new container prototypes - debugging container builds and deployments -- educational intents for container development/examples (i.e. workflows and devcontainers) +- educational intentions for container development/examples (i.e. workflows and devcontainers) You can find more at: @@ -31,7 +31,7 @@ You can find more at: ### Custom Shell -Using the `docker-compose.yml` file (included) makes certain tasks easier. For example, opening a self-removing ZShell instance can be done lke so: +Using the `docker-compose.yml` file (included) makes certain tasks easier. For example, opening a self-removing ZShell instance can be done like so: docker compose run --rm app1 @@ -69,13 +69,13 @@ Some possible tasks to add-to/replace the default options: - test for internet access issues - scan ports on target host - get network response times -- setup a reverse proxy for remote shell (outbond from container host to remote support system) +- setup a reverse proxy for remote shell (outbound from container host to remote support system) - create a container project from defined template ## Use with Portainer -Use the `portainer-compose.yml` file and modify to your hearts content. +Use the `portainer-compose.yml` file and modify to your heart's content. ## Fixed grammer From aa9de8eaadef423c93f1c57771f07e44c3b28891 Mon Sep 17 00:00:00 2001 From: rayyan <70425452+xrrays@users.noreply.github.com> Date: Fri, 14 Feb 2025 15:37:54 -0700 Subject: [PATCH 2/3] Update portainer-compose.yml --- portainer-compose.yml | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/portainer-compose.yml b/portainer-compose.yml index 0e3dbfc..108a206 100644 --- a/portainer-compose.yml +++ b/portainer-compose.yml @@ -1,15 +1,14 @@ -version: '3.8' +# this is the file used to deploy on Portainer +# or other more permanent hosting solutions services: - - # Building and testing environment - app: - build: - context: . - dockerfile: Dockerfile - image: ghcr.io/growlf/toolbox:testing - stdin_open: true - tty: true - command: ["/bin/zsh"] + myapp: + container_name: myapp + image: dockerstepbystep:latest + build: . + ports: + - "8080:8080" volumes: - - /var/run/docker.sock:/var/run/docker.sock - network_mode: "host" + - "app_data:/var/app_data" + +volumes: + app_data: From 987d886e8ec31df40b9da07d2123d18210bab6f6 Mon Sep 17 00:00:00 2001 From: rayyan <70425452+xrrays@users.noreply.github.com> Date: Fri, 14 Feb 2025 15:49:34 -0700 Subject: [PATCH 3/3] Update portainer-compose.yml --- portainer-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/portainer-compose.yml b/portainer-compose.yml index 108a206..cf4aab5 100644 --- a/portainer-compose.yml +++ b/portainer-compose.yml @@ -3,7 +3,7 @@ services: myapp: container_name: myapp - image: dockerstepbystep:latest + image: ghcr.io/growlf/toolbox:latest build: . ports: - "8080:8080"