gotty icon indicating copy to clipboard operation
gotty copied to clipboard

Feature: Docker containerization

Open rafi opened this issue 7 years ago • 2 comments

  • Add initial Dockerfile with default environment options
  • Add initial docker-compose configuration
  • Add docker installation guide in README.md

Usage

  • Either use docker-compose:
docker-compose up
  • Or docker manually:
$ docker build -t gotty .
$ docker run --rm --publish 8080:8080 gotty

You can run one-off commands too, e.g.:

docker run --rm --publish 8080:8080 gotty --once top -o %CPU

rafi avatar May 11 '17 15:05 rafi

+1

enriquecaballero avatar Mar 15 '18 05:03 enriquecaballero

FYI to anyone finding this, I've made a similar container in https://github.com/vorburger/cloudshell.

vorburger avatar Apr 05 '20 01:04 vorburger