mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
15 lines
302 B
YAML
15 lines
302 B
YAML
version: '3'
|
|
services:
|
|
db:
|
|
image: postgres
|
|
volumes:
|
|
- ./tmp/db:/var/lib/postgresql/data
|
|
web:
|
|
build: .
|
|
command: bash -c "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0'"
|
|
volumes:
|
|
- .:/app
|
|
ports:
|
|
- "3000:3000"
|
|
depends_on:
|
|
- db |