-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcontainers.sh
executable file
·35 lines (30 loc) · 978 Bytes
/
containers.sh
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
34
35
#!/usr/bin/env bash
# Start
echo "$(basename "$0") starting."
# docker
if [[ -f $(command -v docker) ]] ; then
echo "Pulling docker images"
# base containers
docker pull alpine:3.18
docker pull golang:1-alpine3.18
docker pull node:lts-alpine3.18
docker pull python:3.11-alpine3.18
# personal containers
docker pull craighurley/aws-mfa:latest
docker pull craighurley/cfn-lint:latest
docker pull craighurley/cfn-nag:latest
docker pull craighurley/ipcalc:latest
docker pull craighurley/markdownlint-cli:latest
docker pull craighurley/org-formation-cli:latest
docker pull craighurley/sceptre:latest
docker pull craighurley/shellcheck:latest
docker pull craighurley/yamllint:latest
fi
# tart
if [[ -f $(command -v tart) ]] ; then
echo "Pulling tart images"
tart pull ghcr.io/cirruslabs/macos-sonoma-base:latest
tart pull ghcr.io/cirruslabs/fedora:latest
fi
# Finished
echo "$(basename "$0") complete."