gimmyxd/mentors4me-api

View on GitHub
docker-compose.yaml

Summary

Maintainability
Test Coverage
version: '3'
services:
  postgres:
    restart: always
    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:
      - .:/myapp
    ports:
      - "3000:3000"
    depends_on:
      - postgres