39 lines
No EOL
2 KiB
Bash
Executable file
39 lines
No EOL
2 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
|
|
docker build -t git.zontreck.com/ariascreations/yolks:alpine base/alpine
|
|
docker build -t git.zontreck.com/ariascreations/yolks:debian base/debian
|
|
docker build -t git.zontreck.com/ariascreations/yolks:ubuntu base/ubuntu
|
|
docker build -t git.zontreck.com/ariascreations/yolks:arch base/arch
|
|
|
|
|
|
# Build dart containers
|
|
docker build -t git.zontreck.com/ariascreations/yolks:dart_stable dart/stable
|
|
docker build -t git.zontreck.com/ariascreations/yolks:dart_3.3 dart/3.3
|
|
|
|
# Build java containers
|
|
docker build -t git.zontreck.com/ariascreations/yolks:jdk8 java/8
|
|
docker build -t git.zontreck.com/ariascreations/yolks:jdk11 java/11
|
|
docker build -t git.zontreck.com/ariascreations/yolks:jdk16 java/16
|
|
docker build -t git.zontreck.com/ariascreations/yolks:jdk17 java/17
|
|
docker build -t git.zontreck.com/ariascreations/yolks:jdk19 java/19
|
|
docker build -t git.zontreck.com/ariascreations/yolks:jdk21 java/21
|
|
|
|
# Build wine
|
|
docker build -t git.zontreck.com/ariascreations/yolks:wine_8.0 wine/8.0
|
|
docker build -t git.zontreck.com/ariascreations/yolks:wine_8.21 wine/8.21
|
|
docker build -t git.zontreck.com/ariascreations/yolks:wine_9.0 wine/9.0
|
|
docker build -t git.zontreck.com/ariascreations/yolks:wine_9.16 wine/9.16
|
|
|
|
# Installers
|
|
docker build -t git.zontreck.com/ariascreations/yolks:installers_alpine installers/alpine
|
|
docker build -t git.zontreck.com/ariascreations/yolks:installers_debian installers/debian
|
|
docker build -t git.zontreck.com/ariascreations/yolks:installers_ubuntu installers/ubuntu
|
|
|
|
# SteamCmd Containers
|
|
docker build -t git.zontreck.com/ariascreations/yolks:steamcmd_debian steamcmd/debian
|
|
docker build -t git.zontreck.com/ariascreations/yolks:steamcmd_dotnet steamcmd/dotnet
|
|
docker build -t git.zontreck.com/ariascreations/yolks:steamcmd_proton steamcmd/proton
|
|
docker build -t git.zontreck.com/ariascreations/yolks:steamcmd_proton8 steamcmd/proton_8
|
|
docker build -t git.zontreck.com/ariascreations/yolks:steamcmd_sniper steamcmd/sniper
|
|
docker build -t git.zontreck.com/ariascreations/yolks:steamcmd_ubuntu steamcmd/ubuntu |