Skip to content

Commit

Permalink
fix: Docker Compose no longer allows duplicate << entries.
Browse files Browse the repository at this point in the history
Repeated anchors are not allowed in YAML, the values should be a list. See docker/compose#10411
  • Loading branch information
abates committed May 17, 2023
1 parent b46f17a commit 582932a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions development/docker-compose.base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ services:
condition: "service_started"
db:
condition: "service_healthy"
<<: *nautobot-build
<<: *nautobot-base
<<:
- *nautobot-build
- *nautobot-base
worker:
entrypoint:
- "sh"
Expand Down

0 comments on commit 582932a

Please sign in to comment.