Skip to content

Commit

Permalink
docker: don't depend other backend containers on log container
Browse files Browse the repository at this point in the history
It is annoying when doing for example

    docker-compose \
        -f docker-compose.yaml \
        -f docker-compose.shell.yaml \
        up -d backend-build

Then it re-creates also `backend-log`.
  • Loading branch information
FrostyX committed May 30, 2024
1 parent 8afef6a commit b3fa13c
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ services:
hostname: backend-build
command: ["/run-backend", "--sign-host", "keygen-signd", "/usr/bin/copr-run-dispatcher-backend", "builds"]
depends_on:
- backend-log
- resalloc
stdin_open: true
tty: true
Expand All @@ -50,7 +49,6 @@ services:
hostname: backend-action
command: ["/run-backend", "--sign-host", "keygen-signd", "/usr/bin/copr-run-dispatcher-backend", "actions"]
depends_on:
- backend-log
- resalloc
stdin_open: true
tty: true
Expand All @@ -77,8 +75,6 @@ services:
backend_httpd:
build:
context: docker/backend_httpd
depends_on:
- backend-log
hostname: backend_httpd
ports:
- "5002:5002"
Expand Down

0 comments on commit b3fa13c

Please sign in to comment.