Added docker compose file to make bringing up/down the services easier; modified puma config to be more efficient
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Gregory Ballantine
2026-07-24 12:52:57 -04:00
parent d526fa30f4
commit 22dd3bca3e
2 changed files with 45 additions and 5 deletions
+23
View File
@@ -0,0 +1,23 @@
services:
game-data:
build:
context: .
dockerfile: Dockerfile.dev
image: game-data
container_name: game-data
ports:
- "9292:9292"
volumes:
- .:/usr/src/game-data
tty: true
game-data-gulp:
build:
context: .
dockerfile: Dockerfile.gulp
image: game-data-gulp
container_name: game-data-gulp
volumes:
- .:/usr/src/game-data
tty: true
command: npm run gulp watch