Sha256: ab8e765bfd894d9102c40b04922f5aece8d13a8812d66ab92ee7d30c569cc16f
Contents?: true
Size: 940 Bytes
Versions: 18
Compression:
Stored size: 940 Bytes
Contents
version: '3' services: db: image: postgres environment: - POSTGRES_HOST_AUTH_METHOD=trust web: image: nexmodeveloper_app build: . command: bundle exec rails s -p 3000 -b '0.0.0.0' volumes: - .:/app - /app/node_modules ports: - "3000:3000" depends_on: - clean - update - db environment: - OAS_PATH=_open_api/api_specs/definitions - DOCS_BASE_PATH=. - POSTGRES_HOST=db - POSTGRES_USERNAME=postgres - RAILS_ENV=development - RACK_ENV=development clean: image: nexmodeveloper_app build: . command: bash -c "rm -Rf public/packs && rm -f /app/tmp/pids/server.pid" volumes: - .:/app update: image: nexmodeveloper_app build: . command: bash -c "rake db:setup" volumes: - .:/app depends_on: - db environment: - POSTGRES_HOST=db - POSTGRES_USERNAME=postgres
Version data entries
18 entries across 18 versions & 1 rubygems