diff options
author | softwarefactory-project-zuul[bot] <33884098+softwarefactory-project-zuul[bot]@users.noreply.github.com> | 2021-06-01 18:16:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-01 18:16:08 +0200 |
commit | a286324ab7e71940b1bbfce7060fbe5dab032bac (patch) | |
tree | 964a81403f31859650172b9f5ed9573eab3986a7 /tools | |
parent | Delete dependabot.yml (diff) | |
parent | Update README.md (diff) | |
download | awx-a286324ab7e71940b1bbfce7060fbe5dab032bac.tar.xz awx-a286324ab7e71940b1bbfce7060fbe5dab032bac.zip |
Merge pull request #10313 from YoungjuWang/patch-1
Update README.md
SUMMARY
Guide for running docker-compose with detached mode
ISSUE TYPE
Docs Pull Request
AWX VERSION
19.1.0
Reviewed-by: Jake McDermott <yo@jakemcdermott.me>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/docker-compose/README.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/docker-compose/README.md b/tools/docker-compose/README.md index 3987e596d2..5e985b6d6d 100644 --- a/tools/docker-compose/README.md +++ b/tools/docker-compose/README.md @@ -82,6 +82,9 @@ $ make docker-compose > The make target assumes that the image you built is tagged with your current branch. This allows you to build images for different contexts or branches. When starting the containers, you can choose a specific branch by setting `COMPOSE_TAG=<branch name> `in your environment. For example, you might be working in a feature branch, but you want to run the containers using the devel image you built previously. To do that, start the containers using the following command: `$ COMPOSE_TAG=devel make docker-compose` + +> For running docker-compose detached mode, start the containers using the following command: `$ make docker-compose COMPOSE_UP_OPTS=-d` + ##### Wait for migrations to complete The first time you start the environment, database migrations need to run in order to build the PostgreSQL database. It will take few moments, but eventually you will see output in your terminal session that looks like the following: |