8 lines
112 B
Python
8 lines
112 B
Python
|
import docker
|
||
|
|
||
|
client = docker.from_env()
|
||
|
|
||
|
print(client.containers.run("itzg/minecraft-server", detach=True))
|
||
|
|
||
|
|