Added shell scripts for managing the docker container
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Gregory Ballantine 2024-02-26 00:10:42 -05:00
parent 778bd25ef2
commit 6d26eea419
3 changed files with 9 additions and 0 deletions

3
bin/docker-build.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
docker build -t game-data -f Dockerfile.dev .

3
bin/docker-rake.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
docker exec game-data rake "$@"

3
bin/docker-run.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
docker run --rm -d -v "$(pwd):/src" -p 9292:9292 --name game-data game-data