Files
railsgoat/docker-compose.yml
T
robbiepaul 8e406c3d4a
CI / test (3.4.1) (push) Has been cancelled
Fix port mapping
2026-04-27 18:37:17 +01:00

10 lines
195 B
YAML

version: '2'
services:
web:
build: .
command: bash -c "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0'"
volumes:
- .:/myapp
ports:
- "80:3000"