10 lines
163 B
YAML
10 lines
163 B
YAML
|
version: "3.8"
|
||
|
services:
|
||
|
app:
|
||
|
build: .
|
||
|
command: bundle exec ruby app.rb -o 0.0.0.0 -p 4567
|
||
|
ports:
|
||
|
- "4567:4567"
|
||
|
volumes:
|
||
|
- .:/code
|
||
|
|