14 lines
240 B
Python
14 lines
240 B
Python
from tyop import Migration
|
|
|
|
|
|
class InternalTrueMigration(Migration):
|
|
"""Add `internal: true` to all internal network definitions."""
|
|
|
|
GLOB = "~/.abra/apps/**/**.yml"
|
|
|
|
def migrate(compose):
|
|
pass
|
|
|
|
|
|
InternalTrueMigration()
|