dcmerge/pkg/domain/dockerCompose
Markus Pesch ab282e5173
All checks were successful
continuous-integration/drone/push Build is passing
feat: support depends_on
This PR supports the extended pattern of `depends_on`. If the short version of
`depends_on` is defined, it will be migrated to the extended version like the
example below:

```yaml
services:
  web:
    depends_on
    - database

services:
  web:
    depends_on:
      database:
        condition: service_started
```

All three types of merging strategies are supported.
2025-02-24 22:44:11 +01:00
..
config_intern_test.go feat: respect individual ports instead of replacing the entire slice of ports 2025-02-21 13:55:53 +01:00
config_test.go feat: support depends_on 2025-02-24 22:44:11 +01:00
config.go feat: support depends_on 2025-02-24 22:44:11 +01:00
equalable.go Initial Commit 2023-07-26 09:57:40 +02:00