You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 7, 2022. It is now read-only.
I'm trying to run this process in a docker container, but it keeps killing the container because the essential process exits when bazels3cache goes to the background. Is there a possibility of running this process in the foreground?
The text was updated successfully, but these errors were encountered:
@exchgr I tried this and it works in my kubernetes deployment:
command:
- sh
- -c
- "/usr/bin/bazels3cache --bucket=some-bucket-for-bazelcache --logging.file=/dev/null && while sleep 3600; do :; done"
When I tried with "/usr/bin/bazels3cache --bucket=some-bucket-for-bazelcache --logging.file=/dev/null && cat, my container kept crashing. Since, I am running with alpine, sleep infinity isn't available to me.
And don't forget --host 0.0.0.0. This took me a long time to realize. By default, it only mounts to localhost, which makes pod / service traffic work, but fails for ingresses.
I'm trying to run this process in a docker container, but it keeps killing the container because the essential process exits when bazels3cache goes to the background. Is there a possibility of running this process in the foreground?
The text was updated successfully, but these errors were encountered: