Skip to content

Commit f08841b

Browse files
committed
initial
0 parents  commit f08841b

File tree

3 files changed

+45
-0
lines changed

3 files changed

+45
-0
lines changed

Dockerfile

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
FROM debian:jessie
2+
3+
MAINTAINER opsxcq <[email protected]>
4+
5+
RUN apt-get update && \
6+
apt-get upgrade -y && \
7+
DEBIAN_FRONTEND=noninteractive apt-get install -y \
8+
curl \
9+
wget \
10+
openssl \
11+
ca-cacert \
12+
ca-certificates \
13+
python \
14+
python-pip \
15+
ssh \
16+
rsync \
17+
git \
18+
ansible \
19+
&& \
20+
apt-get clean && \
21+
rm -rf /var/lib/apt/lists/*
22+
23+
# Docker
24+
RUN curl -fsSL https://get.docker.com/ | sh
25+
26+
COPY main.sh /
27+
ENTRYPOINT ["/main.sh"]
28+
CMD ["default"]
29+

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# DevOps toolbox
2+
3+
* Terraform
4+
* Ansible
5+
* Docker
6+
7+
# Utils
8+
9+
* Git
10+
* Rclone
11+
* Rsync
12+
* Ssh

main.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/bash
2+
3+
bash
4+

0 commit comments

Comments
 (0)