croker

command module
v0.0.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 26, 2021 License: MIT Imports: 1 Imported by: 0

README

Croker

Croker is an open-source project to run periodic tasks and foreground services conveniently. And we can view their logs directly. All commands are similar to docker.

$ croker run -s "0 * * * *" echo One hour passed
eb80f0e4d262
$ croker run -s "@every 1s" echo One second passed
493572f389bd
$ croker ps
ID              COMMAND                 SCHEDULE        CREATED         STATUS
eb80f0e4d262    echo One hour passed    0 * * * *       12 seconds ago  Up 12 seconds
493572f389bd    echo One second p...    @every 1s       5 seconds ago   Up 5 seconds
$ croker logs 493 # view logs conveniently
2021-07-18 17:39:10  :
One second passed

2021-07-18 17:39:11  :
One second passed
$ croker stop 493
493572f389bd
$ croker run "nc -lk 8080" # run foreground service in the background
010741966e11
$ echo hello | nc localhost 8080
$ echo world | nc localhost 8080
$ croker ps
ID              COMMAND                 SCHEDULE        CREATED         STATUS
010741966e11    nc -lk 8080                             2 minutes ago   Up 2 minutes
eb80f0e4d262    echo One hour passed    0 * * * *       12 minutes ago  Up 12 minutes
493572f389bd    echo One second p...    @every 1s       12 minutes ago  Stopped 11 minutes
$ croker logs -f 010 # follow log output
hello
world

Installation

go get github.com/urie96/croker/server
go get github.com/urie96/croker/croker
server # start the daemon progress

Usage

Usage:
  croker [command]

Available Commands:
  inspect     A brief description of your command
  logs        Fetch the logs of a job
  prune       Remove all stopped jobs
  ps          List jobs
  rm          Remove one or more jobs
  run         Run a command or a cronjob in this host
  start       Start one or more stopped jobs
  stop        Stop one or more running jobs
  version     Show the Croker version information
  completion  generate the autocompletion script for the specified shell
  help        Help about any command

Documentation

Overview

Copyright © 2021 NAME HERE <EMAIL ADDRESS>

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Directories

Path Synopsis
cli
cmd
job

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL