Revert "made data and config directories dynamic, switched from DockerRunLauncher to DefaultRunLauncher"
This reverts commit f85935dd75.
This commit is contained in:
parent
575311edc6
commit
0b15018722
2 changed files with 28 additions and 13 deletions
21
dagster.yaml
21
dagster.yaml
|
|
@ -8,10 +8,27 @@ run_coordinator:
|
|||
class: QueuedRunCoordinator
|
||||
config:
|
||||
max_concurrent_runs: 5
|
||||
tag_concurrency_limits:
|
||||
- key: "operation"
|
||||
value: "example"
|
||||
limit: 5
|
||||
|
||||
run_launcher:
|
||||
module: dagster.core.launcher
|
||||
class: DefaultRunLauncher
|
||||
module: dagster_docker
|
||||
class: DockerRunLauncher
|
||||
config:
|
||||
env_vars:
|
||||
- DAGSTER_POSTGRES_USER
|
||||
- DAGSTER_POSTGRES_PASSWORD
|
||||
- DAGSTER_POSTGRES_DB
|
||||
- MOBILITY_DB_REFRESH_TOKEN
|
||||
network: dagster
|
||||
container_kwargs:
|
||||
volumes: # Make docker client accessible to any launched containers as well
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
- /tmp/io_manager_storage:/tmp/io_manager_storage
|
||||
- /home/ben/code/gtfs-dagster/data:/opt/dagster/app/data
|
||||
- /home/ben/code/gtfs-dagster/config:/opt/dagster/app/config
|
||||
|
||||
run_storage:
|
||||
module: dagster_postgres.run_storage
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue