• v0.0.1 3daba14652

    v0.0.1
    All checks were successful
    / build (push) Successful in 1m1s
    Stable

    marc released this 2024-06-03 04:22:23 +00:00 | 27 commits to main since this release

    Changes

    • Introduces spud start and spud stop as commands to manage services.
    • Using start needs to provide the path to the service configuration which follows the schema:
    name: <service-name>
    volumes:
      - name: <volume-name-to-ensure-exists>
      ...
    ports:
      - host: <host-port>
        container: <container-port>
    containers:
      - name: <container-name>
        image: <image-name>
        volumes:
          - name: <volume-name>
            container: <path-in-container>
          - host: <host-path>
            container: <path-in-container>
        extra-args:
          -  <extra>
          ...
    
    Downloads