How to run 'docker-compose up' in the background
In order to run docker-compose up
in the background, use
docker-compose up -d
The -d
option means --detach
, i.e. the process is detached from the foreground shell you are running.
In order to run docker-compose up
in the background, use
docker-compose up -d
The -d
option means --detach
, i.e. the process is detached from the foreground shell you are running.