This repository has been archived on 2021-07-15. You can view files and clone it, but cannot push or open issues or pull requests.
tyop/migrations/internaltrue.py

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()