@@ -28,7 +28,7 @@ This module uses Dagger's secret management system to handle sensitive data like
2828
2929``` bash
3030export LOCALSTACK_AUTH_TOKEN=your-token-here
31- dagger call serve --auth-token=env:LOCALSTACK_AUTH_TOKEN up
31+ dagger call start --auth-token=env:LOCALSTACK_AUTH_TOKEN up
3232```
3333
3434The token will be then securely handled by Dagger and never exposed in logs or command output.
@@ -44,14 +44,14 @@ The token will be then securely handled by Dagger and never exposed in logs or c
4444
4545### Configuration
4646
47- #### ` serve `
47+ #### ` start `
4848
4949| Input | Description | Default | Example |
5050| -------| -------------| ---------| ---------|
51- | ` auth-token ` | LocalStack Pro auth token (as Dagger secret) | ` None ` | ` dagger call serve --auth-token=env:LOCALSTACK_AUTH_TOKEN ` |
52- | ` configuration ` | Configuration variables for LocalStack container | ` None ` | ` dagger call serve --configuration='DEBUG=1,PERSISTENCE=1' ` |
53- | ` docker-sock ` | Unix socket path for Docker daemon | ` None ` | ` dagger call serve --docker-sock=/var/run/docker.sock ` |
54- | ` image-name ` | Custom LocalStack image name | ` None ` | ` dagger call serve --image-name=localstack/snowflake:latest ` |
51+ | ` auth-token ` | LocalStack Pro auth token (as Dagger secret) | ` None ` | ` dagger call start --auth-token=env:LOCALSTACK_AUTH_TOKEN ` |
52+ | ` configuration ` | Configuration variables for LocalStack container | ` None ` | ` dagger call start --configuration='DEBUG=1,PERSISTENCE=1' ` |
53+ | ` docker-sock ` | Unix socket path for Docker daemon | ` None ` | ` dagger call start --docker-sock=/var/run/docker.sock ` |
54+ | ` image-name ` | Custom LocalStack image name | ` None ` | ` dagger call start --image-name=localstack/snowflake:latest ` |
5555
5656#### ` state `
5757
@@ -79,7 +79,7 @@ The token will be then securely handled by Dagger and never exposed in logs or c
7979
8080``` bash
8181# Basic start
82- dagger call serve up
82+ dagger call start up
8383```
8484
8585### Start LocalStack Pro Edition
@@ -89,7 +89,7 @@ dagger call serve up
8989export LOCALSTACK_AUTH_TOKEN=your-token-here
9090
9191# Basic start with auth token from environment
92- dagger call serve --auth-token=env:LOCALSTACK_AUTH_TOKEN up
92+ dagger call start --auth-token=env:LOCALSTACK_AUTH_TOKEN up
9393```
9494
9595## Development
0 commit comments