Advertisement
Guest User

docker-compose.yml

a guest
Nov 17th, 2017
726
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.41 KB | None | 0 0
  1. version: '3'
  2.  
  3. services:
  4.   db:
  5.     image: postgres
  6.   webpacker:
  7.     build: .
  8.     command: ./bin/webpack-dev-server
  9.     volumes:
  10.      - .:/acars_app
  11.     ports:
  12.      - "3035:3035"
  13.  
  14.   web:
  15.     build: .
  16.     command: bash -c "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0'"
  17.     volumes:
  18.      - .:/acars_app
  19.     ports:
  20.      - "3000:3000"
  21.     depends_on:
  22.      - db
  23.       - webpacker
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement