13 lines
365 B
YAML
13 lines
365 B
YAML
# Copyright Broadcom, Inc. All Rights Reserved.
|
|
# SPDX-License-Identifier: APACHE-2.0
|
|
|
|
services:
|
|
ruby:
|
|
tty: true # Enables debugging capabilities when attached to this container.
|
|
image: docker.io/bitnami/ruby:3.4
|
|
# command: sh -c 'bundle install && bundle exec rails server -b 0.0.0.0 -p 3000'
|
|
ports:
|
|
- 3000:3000
|
|
volumes:
|
|
- .:/app
|