Sha256: 8808d398ead7bd25f0529924e1d09115129f00cae2c225b334d16271c2c2e953
Contents?: true
Size: 616 Bytes
Versions: 3
Compression:
Stored size: 616 Bytes
Contents
version: '3' services: db: image: postgres volumes: - ./tmp/db:/var/lib/postgresql/data app_core: build: app_core command: bash -c "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0'" volumes: - ./app_core:/app - ./big_session:/mnt/big_session ports: - "3000:3000" depends_on: - db app_lp: build: app_lp command: bash -c "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0'" volumes: - ./app_lp:/app - ./big_session:/mnt/big_session ports: - "3001:3000" depends_on: - db
Version data entries
3 entries across 3 versions & 1 rubygems