On branch os-configuration

Initial commit

 Changes to be committed:
Vim swapfiles
	new file:   .gitignore
Minimal compose yml
	new file:   docker-compose.yml
Iterative Dockerfile
	new file:   striker/Dockerfile
This commit is contained in:
Mike Holloway 2024-05-27 11:33:02 -04:00
commit b341d300d2
3 changed files with 17 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.*.sw*

3
docker-compose.yml Normal file
View File

@ -0,0 +1,3 @@
services:
striker01:
build: ./striker

13
striker/Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM almalinux:latest
RUN sed -i 's/enabled=0/enabled=1/g' /etc/yum.repos.d/almalinux-highavailability.repo
RUN dnf install -y https://alteeve.com/an-repo/m3/alteeve-release-latest.noarch.rpm
RUN yes | alteeve-repo-setup
RUN dnf install -y anvil-striker --nobest
RUN anvil-change-password --new-password "Initial1"
CMD /bin/bash