Background processes in Shell
What are shell background processes?
Looking at the man page of gnu bash section 3.2.4
, a command executed in background is essentially asynchronous execution of multiple commands.
One way to run a command in background is to terminate the command with the &
operator:
> ( && )& ( && )&
The output of background commands are redirected to /dev/null
, so to see the echo
output:
( && )& ( && )&
Why use this?
The two main use-cases are running things in parallel and not wanting to wait for the output of a command. One example is starting multiple processes in a container.
Docker documentation recommends creating a wrapper script.
This is a great way of running set-up tasks if initContainers
or multi-stage builds cannot solve your problem.
Example
As an example, let's run Airflow and create a user via airflow CLI. For development this is acceptable, for production, I would prefer to use initContainers over this approach.
FROM apache/airflow:slim-2.9.1-python3.12 AS base
ARG AIRFLOW_USER_HOME=/opt/airflow
VOLUME /opt/airflow
ENV AIRFLOW__CORE__LOAD_EXAMPLES=False
COPY start-airflow-bg .
ENTRYPOINT ["./start-airflow-bg"]
#!/bin/bash
# Start the first process
&& && &
CREATE_PID=