is it possible to run a unity game on docker?any examples?
i’m using mirror networking.
here is what i’m trying to dockerize.
server
https://www.dropbox.com/s/gpivlz0l9o0tq46/Server.rar?dl=0
client
https://www.dropbox.com/s/ryml1fworwhf4el/client.rar?dl=0
Both of those links are the same by the way. But I imagine it would be as simple as building a docker image that has your built Linux server executable and using the Docker RUN command to run the server in the Dockerfile.
corrected the link
i tried doing it like this
Dockerfile
FROM ubuntu
EXPOSE 7777
CMD [“Mirror.exe”]
do i have to build it on linux machine? is a windows build possible and run it on a linux machine isn’t that what docker is capable?