forked from freeipa/freeipa-container
-
Notifications
You must be signed in to change notification settings - Fork 0
/
atomic-install-help
29 lines (20 loc) · 1000 Bytes
/
atomic-install-help
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
Configuring and running IPA server with atomic
On platforms with atomic command available, the container can be
configured with
atomic install [ --name $THE_NAME ] $IMAGE \
[ keywords for docker operation ] \
[ ipa-server-install | ipa-replica-install ] \
[ opts ]
The keywords for docker operations are:
hostname $IPA_SERVER_HOSTNAME - docker run -h $IPA_SERVER_HOSTNAME
net-host - docker run --net=host, also uses host's hostname
publish - docker run -p 443:443 ... ; publish all ports of the IPA
container on host's interfaces
cap-add $CAPABILITY - docker run --cap-add=$CAPABILITY
ip-address $IPA_SERVER_EXTERNAL_IP_ADDRESS -
docker run -e IPA_SERVER_IP=$IPA_SERVER_EXTERNAL_IP_ADDRESS;
IP address to set in DNS as server's IP address.
The container will use /var/lib/$THE_NAME to store the configuration
and data. It the gets started with
atomic run [ --name $THE_NAME ] freeipa-server
Version 1.12 of atomic is needed.