github.com/GoogleContainerTools/skaffold/v2@v2.13.2/examples/hot-reload/skaffold.yaml (about)

     1  apiVersion: skaffold/v4beta11
     2  kind: Config
     3  build:
     4    artifacts:
     5    - image: node-example
     6      context: node
     7  
     8    - image: python-reload
     9      context: python
    10  
    11  profiles:
    12    - name: dev
    13      activation:
    14        - command: dev
    15      build:
    16        artifacts:
    17        - image: node-example
    18          context: node
    19          docker:
    20            buildArgs:
    21              ENV: development
    22          sync:
    23            manual:
    24            # Sync all the javascript files that are in the src folder
    25            # with the container src folder
    26            - src: 'src/**/*.js'
    27              dest: .
    28        - image: python-reload
    29          context: python
    30          docker:
    31            buildArgs:
    32              DEBUG: 1
    33          sync:
    34            manual:
    35            # Sync all the python files that are in the src folder
    36            # with the container src folder
    37            - src: 'src/**/*.py'
    38              dest: .