All checks were successful
Build and Push Minecraft Docker Images / build (push) Successful in 3m13s
13 lines
728 B
Bash
Executable File
13 lines
728 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) 2023 fithwum
|
|
# All rights reserved
|
|
|
|
docker build --pull --rm -f "testing/Dockerfile" -t gitea.fithwum.tech/fithwum/minecraft:testing "vanilla"
|
|
docker build --pull --rm -f "vanilla/Dockerfile" -t gitea.fithwum.tech/fithwum/minecraft:vanilla "vanilla"
|
|
docker build --pull --rm -f "fabric/Dockerfile" -t gitea.fithwum.tech/fithwum/minecraft:fabric "fabric"
|
|
docker push -a gitea.fithwum.tech/fithwum/minecraft
|
|
|
|
docker build --pull --rm -f "testing/Dockerfile" -t fithwum/minecraft:testing "vanilla"
|
|
docker build --pull --rm -f "vanilla/Dockerfile" -t fithwum/minecraft:vanilla "vanilla"
|
|
docker build --pull --rm -f "fabric/Dockerfile" -t fithwum/minecraft:fabric "fabric"
|
|
docker push -a fithwum/minecraft |