Skip to content

Instantly share code, notes, and snippets.

@JPalmerGithub
Forked from Ryanb58/install.md
Created October 11, 2022 19:15
Show Gist options
  • Save JPalmerGithub/fe2bbd132000ce519b77197cb7682915 to your computer and use it in GitHub Desktop.
Save JPalmerGithub/fe2bbd132000ce519b77197cb7682915 to your computer and use it in GitHub Desktop.

Revisions

  1. @Ryanb58 Ryanb58 revised this gist Aug 8, 2018. 1 changed file with 5 additions and 7 deletions.
    12 changes: 5 additions & 7 deletions install.md
    Original file line number Diff line number Diff line change
    @@ -1,23 +1,21 @@
    ```
    docker exec -it CONTAINERID /bin/sh
    >>> docker exec -it CONTAINERID /bin/sh
    /app # telnet
    /bin/sh: telnet: not found
    /app # apk add busybox-extras
    WARNING: Ignoring APKINDEX.70c88391.tar.gz: No such file or directory
    WARNING: Ignoring APKINDEX.5022a8a2.tar.gz: No such file or directory
    ERROR: unsatisfiable constraints:
    busybox-extras (missing):
    required by: world[busybox-extras]
    /app # apk update
    fetch http://dl-cdn.alpinelinux.org/alpine/v3.7/main/x86_64/APKINDEX.tar.gz
    fetch http://dl-cdn.alpinelinux.org/alpine/v3.7/community/x86_64/APKINDEX.tar.gz
    v3.7.0-243-gf26e75a186 [http://dl-cdn.alpinelinux.org/alpine/v3.7/main]
    v3.7.0-229-g087f28e29d [http://dl-cdn.alpinelinux.org/alpine/v3.7/community]
    OK: 9051 distinct packages available
    /app # apk add busybox-extras
    (1/1) Installing busybox-extras (1.27.2-r11)
    Executing busybox-extras-1.27.2-r11.post-install
    Executing busybox-1.27.2-r7.trigger
    OK: 77 MiB in 64 packages
    /app # busybox-extras telnet localhost 6900
    ```
  2. @Ryanb58 Ryanb58 revised this gist Aug 8, 2018. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions install.md
    Original file line number Diff line number Diff line change
    @@ -1,3 +1,4 @@
    ```
    docker exec -it CONTAINERID /bin/sh
    /app # telnet
    /bin/sh: telnet: not found
    @@ -19,3 +20,4 @@ Executing busybox-extras-1.27.2-r11.post-install
    Executing busybox-1.27.2-r7.trigger
    OK: 77 MiB in 64 packages
    /app # busybox-extras telnet localhost 6900
    ```
  3. @Ryanb58 Ryanb58 created this gist Aug 8, 2018.
    21 changes: 21 additions & 0 deletions install.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,21 @@
    docker exec -it CONTAINERID /bin/sh
    /app # telnet
    /bin/sh: telnet: not found
    /app # apk add busybox-extras
    WARNING: Ignoring APKINDEX.70c88391.tar.gz: No such file or directory
    WARNING: Ignoring APKINDEX.5022a8a2.tar.gz: No such file or directory
    ERROR: unsatisfiable constraints:
    busybox-extras (missing):
    required by: world[busybox-extras]
    /app # apk update
    fetch http://dl-cdn.alpinelinux.org/alpine/v3.7/main/x86_64/APKINDEX.tar.gz
    fetch http://dl-cdn.alpinelinux.org/alpine/v3.7/community/x86_64/APKINDEX.tar.gz
    v3.7.0-243-gf26e75a186 [http://dl-cdn.alpinelinux.org/alpine/v3.7/main]
    v3.7.0-229-g087f28e29d [http://dl-cdn.alpinelinux.org/alpine/v3.7/community]
    OK: 9051 distinct packages available
    /app # apk add busybox-extras
    (1/1) Installing busybox-extras (1.27.2-r11)
    Executing busybox-extras-1.27.2-r11.post-install
    Executing busybox-1.27.2-r7.trigger
    OK: 77 MiB in 64 packages
    /app # busybox-extras telnet localhost 6900