fix: declare default network for podman-compose compatibility
podman-compose requires all networks referenced in service configs to be explicitly declared in the top-level networks block. Docker Compose creates the default network implicitly, but podman-compose errors with 'missing networks: default'. https://claude.ai/code/session_01FKCW3FDjNFj6jve4niMFXH
This commit is contained in:
parent
48b9ccf152
commit
b23e02f2d2
1 changed files with 1 additions and 0 deletions
|
|
@ -138,6 +138,7 @@ networks:
|
||||||
name: hiy-net
|
name: hiy-net
|
||||||
# External so deployed app containers can join it.
|
# External so deployed app containers can join it.
|
||||||
external: false
|
external: false
|
||||||
|
default: {}
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
hiy-data:
|
hiy-data:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue