blob: f480091619120a554ad71bdf395014e7ea75b3bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
from typing import List, Union, TYPE_CHECKING
import archinstall
from archinstall.default_profiles.profile import Profile, ProfileType
from archinstall.lib.models import User
if TYPE_CHECKING:
from archinstall.lib.installer import Installer
class DockerProfile(Profile):
def __init__(self):
super().__init__(
'Docker',
ProfileType.ServerType
)
@property
def packages(self) -> List[str]:
return ['docker']
@property
def services(self) -> List[str]:
return ['docker']
def post_install(self, install_session: 'Installer'):
users: Union[User, List[User]] = archinstall.arguments.get('!users', [])
if not isinstance(users, list):
users = [users]
for user in users:
install_session.arch_chroot(f'usermod -a -G docker {user.username}')
|