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
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user