Added docker support for development environment
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2024-02-09 07:17:14 -05:00
parent 175ce24b27
commit 8dee8b1f40
6 changed files with 22 additions and 4 deletions

1
bin/docker-build.bat Normal file
View File

@ -0,0 +1 @@
docker build -t game-data -f Dockerfile.dev .

1
bin/docker-rake.bat Normal file
View File

@ -0,0 +1 @@
docker exec game-data rake %*

1
bin/docker-run.bat Normal file
View File

@ -0,0 +1 @@
docker run --rm -d -v "%cd%:/src" -p 9292:9292 --name game-data game-data