Skip to content

Commit b5743a1

Browse files
committed
(#39) xmpp2: install Docker
1 parent 946cd03 commit b5743a1

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

Folder.DotSettings

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
2-
<s:Boolean x:Key="/Default/UserDictionary/Words/=codingteam/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>
2+
<s:Boolean x:Key="/Default/UserDictionary/Words/=codingteam/@EntryIndexedValue">True</s:Boolean>
3+
<s:Boolean x:Key="/Default/UserDictionary/Words/=lineinfile/@EntryIndexedValue">True</s:Boolean>
4+
<s:Boolean x:Key="/Default/UserDictionary/Words/=sshuser/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>

xmpp2/default.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@
44

55
- import_playbook: auth.yml
66
- import_playbook: nginx.yml
7+
- import_playbook: docker.yml
78
- import_playbook: codingteam.org.ru.yml

xmpp2/docker.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# SPDX-FileCopyrightText: 2025 Friedrich von Never <[email protected]>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
5+
---
6+
- name: Install Docker
7+
hosts: xmpp2
8+
become: true
9+
10+
tasks:
11+
- name: Update apt cache
12+
ansible.builtin.apt:
13+
update_cache: true
14+
cache_valid_time: 3600
15+
16+
- name: Install the Docker package
17+
ansible.builtin.apt:
18+
name: docker.io
19+
state: present

0 commit comments

Comments
 (0)