11 lines
239 B
Bash
11 lines
239 B
Bash
#!/bin/sh
|
|
# Pour docker et le plugin compose pour docker sur un Debian
|
|
|
|
|
|
# Add Docker's official GPG key:
|
|
apt-get update
|
|
apt-get install software-properties-common
|
|
|
|
add-apt-repository --yes --update ppa:ansible/ansible
|
|
|
|
apt install ansible |