We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi all,
first of all: I'm new to jobber and I expect the issue in front of my screen.
I have the following docker-compose file to "learn"/practice jobber:
version: '3' services: jobberorg2: image: blacklabelops/jobber container_name: jobberorg2compose restart: always environment: - JOB_NAME1=TestEcho - JOB_COMMAND1=date - JOB_TIME1=* * * * * *
Result: Jobber ist printing date. So it behaves like echo date
echo date
Alternatively I tried to put the command into a separate file and stored it into a shared volume with the jobber container:
version: '3' services: jobberorg3: image: blacklabelops/jobber container_name: jobberorg2compose restart: always volumes: - /home/holger/docker/datapath/jobber2/jobberuser:/home/jobberuser environment: - JOB_NAME1=TestEcho - JOB_COMMAND1=bash /home/jobberuser/test/job.sh
my job.sh contains only date
date
Result: jobberorg2compose | root: bash /home/jobberuser/test/job.sh
jobberorg2compose | root: bash /home/jobberuser/test/job.sh
Has anybody a hint for me what I'm doing wrong? Finally I want to end up with a script called every minute.
Thanks and kind regards Itchy2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi all,
first of all: I'm new to jobber and I expect the issue in front of my screen.
I have the following docker-compose file to "learn"/practice jobber:
Result: Jobber ist printing date. So it behaves like
echo date
Alternatively I tried to put the command into a separate file and stored it into a shared volume with the jobber container:
my job.sh contains only
date
Result:
jobberorg2compose | root: bash /home/jobberuser/test/job.sh
Has anybody a hint for me what I'm doing wrong? Finally I want to end up with a script called every minute.
Thanks and kind regards
Itchy2
The text was updated successfully, but these errors were encountered: