Skip to content

v1.2.1-beta

Latest
Compare
Choose a tag to compare
@gridhead gridhead released this 12 May 18:13

Changelog

This release comes with the following new additions.

  • General
    • Corrected the protocol notation prompt display for TermSocket [#21]
      • Many users were not able to connect as TermSocket URI protocol was incorrectly displayed
    • Ensured that the Virtualenv contents are not copied inside of the built image [#22]
      • Reduced the size of the resulting image to a certain extent
    • Removed repeated prompts from the logs [#23]
      • Removed logs generated from Werkzeug
      • Removed logs generated from attaching webconsole to a container
      • Removed logs generated from storing metrics after equal time intervals

Availability

The releases are available at DockerHub.

Run the following command if you are on a generic PC.

docker run -d \
  --restart unless-stopped \
  --name supervisor-driver-service \
  -p 8888:8888 \
  -p 6969:6969 \
  -v /var/run/docker.sock:/var/run/docker.sock \
  t0xic0der/supervisor-driver-service:v1.2.1b-amd64

or the following command, if you are running an aarch64 distribution on Raspberry Pi 3 or 4.

docker run -d \
  --restart unless-stopped \
  --name supervisor-driver-service \
  -p 8888:8888 \
  -p 6969:6969 \
  -v /var/run/docker.sock:/var/run/docker.sock \
  t0xic0der/supervisor-driver-service:v1.2.1b-arm64

Then, run the following command to grab the credentials.

docker logs supervisor-driver-service
 ,---.                    .    ,o               
 `---..   .,---.,---.,---.|    |.,---.,---.,---.
     ||   ||   ||---'|     \  / |`---.|   ||    
 `---'`---'|---'`---'`      `'  ``---'`---'`    
           |
 * Driver Service v1.2.1-beta
 * Passcode          : 1435738C7EFB8D9B
 * Sync URI          : http://:8888/
 * TermSocket URI    : ws://:6969/
 * Monitor service   : Psutil v5.8.0
 * Container service : DockerPy v4.4.1
 * Datastore service : RedisPy v3.5.3
 * WebSocket service : Terminado v0.9.2
 * Endpoint service  : Falcon v2.0.0
 * HTTP server       : Werkzeug v1.0.1
 * Starting Redis datastore server...

This version of the driver service is compatible with v1.2.0b of the frontend service.