Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ansible/playbooks/docker.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# DEPRECATED: superseded by install_docker.yaml.
# Scheduled for removal on 2026-05-24. See https://github.com/autowarefoundation/autoware/issues/7052.

- name: Set up Docker development environments for Autoware
hosts: localhost
connection: local
Expand Down
15 changes: 15 additions & 0 deletions ansible/playbooks/install_docker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
- name: Install Docker engine and NVIDIA container toolkit for Autoware
hosts: localhost
connection: local
pre_tasks:
- name: Print configuration
ansible.builtin.debug:
msg: Installing Docker engine. Use --skip-tags nvidia to skip the NVIDIA container toolkit.
tags: [always]

roles:
- role: autoware.dev_env.docker_engine
tags: [docker, docker_engine]

- role: autoware.dev_env.nvidia_container_toolkit
tags: [nvidia, nvidia_container_toolkit]
Loading