Wiki

Clone wiki

go-docker-cli / Home

Godocker CLI

godlogin

Usage: godlogin [OPTIONS]

Options:
  -a, --apikey TEXT  gocker user API key  [required]
  -l, --login TEXT   godocker login  [required]
  -s, --server TEXT  godocker server url  [required]
  --no-certificate   no SSL verification
  --help             Show this message and exit.
example :
godlogin -a HGYTP12 -l user -s https://godocker-server.com
godlogin -a HGYTP12 -l user -s https://godocker-server.com --no-certificate

godjob

Usage: godjob [OPTIONS] COMMAND [ARGS]...

Options:
  --help  Show this message and exit.

Commands:
  create   create a new job
  kill     kill a user running job
  killall  kill all user running job
  list     list godocker jobs
  resume   resume a suspended job
  search   search jobs from a regex
  show     show job details
  suspend  suspend a running job
  archive  archive a job over (godocker web >= 1.1.2)
commands description

godfile

Usage: godfile [OPTIONS] COMMAND [ARGS]...

Options:
  --help  Show this message and exit.

Commands:
  download  download file job result only.
  list      list all files associated with a job
commands description

godproject

Usage: godproject [OPTIONS] COMMAND [ARGS]...

Options:
  --help  Show this message and exit.

Commands:
  addmember     add members to a project (admin only)
  create        create a new project (admin only)
  delete        delete a project (admin only)
  deletemember  delete members to a project (admin only)
  list          get user projects list
  listall       get all projects list (admin only)
  show          get project informations
  update        update project infos or quotas (admin only)
  volume        Add or delete project volumes (admin only)
commands description

godssh

Usage: godssh [OPTIONS] COMMAND [ARGS]...

Options:
  --help  Show this message and exit.

Commands:
  connect  SSH connection to the container interactive...
  info     get interactive informations for a job
commands description

godimage

Usage: godimage [OPTIONS] COMMAND [ARGS]...

Options:
  --help  Show this message and exit.

Commands:
  list  list all docker images
commands description

goduser

Usage: goduser [OPTIONS] COMMAND [ARGS]...

Options:
  --help  Show this message and exit.

Commands:
  list    get user list (only for administrators)
  show    get user informations
  update  update user quotas (only for administrators)
commands description

##godbatch

Usage: godbatch.py [OPTIONS] COMMAND [ARGS]...

Options:
  --help  Show this message and exit.

Commands:
  add     Add a job to batch list
  cancel  Cancel a play command on a batch list
  clean   Clear a batch list
  play    Play command on a batch list, parallelizing...
  show    Show status of batch lists

godbatch creates a local sqlite database. Commands (like godjob) are added to the database in a batch list. List can be played to submit tasks in parallel with a max number of simultaneous task. Play command completes when all tasks are submitted (not over).

Updated