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:
Claude 2026-03-24 16:18:46 +00:00
parent 48b9ccf152
commit b23e02f2d2
No known key found for this signature in database

View file

@ -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: