mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2026-02-22 17:16:23 +00:00
9 lines
96 B
Bash
9 lines
96 B
Bash
#!/bin/bash
|
|
|
|
pkgs="$pkgs minecraft-server"
|
|
|
|
for p in $pkgs
|
|
do
|
|
docker build -t itzg/$p $p
|
|
done
|