We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e35fdb2 commit 1897aecCopy full SHA for 1897aec
Dockerfile
@@ -13,4 +13,8 @@ RUN echo "deb http://download.cloudstack.org/ubuntu noble 4.22" > /etc/a
13
apt install -y cloudstack-management && \
14
apt install -y cloudstack-usage
15
16
+COPY entrypoint.sh /entrypoint.sh
17
+
18
EXPOSE 8080 8250 8096 22
19
20
+ENTRYPOINT ["/entrypoint.sh"]
entrypoint.sh
@@ -1,5 +1,6 @@
1
#!/bin/bash
2
3
-service ssh restart
+systemctl enable ssh || systemctl enable sshd
4
+systemctl restart ssh || systemctl restart sshd
5
6
tail -f /dev/null
0 commit comments