Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. version: '2'
  2. services:
  3. app:
  4. build: .
  5. ports:
  6. - 4000:4000
  7. volumes:
  8. - .:/app
  9. command: mix phoenix.server
  10. depends_on:
  11. - postgres
  12. postgres:
  13. environment:
  14. - POSTGRES_USER=elixirhero
  15. - POSTGRES_PASSWORD=elixirhero
  16. image: postgres:latest
  17. volumes:
  18. - postgres-data:/var/lib/postgresql/data
  19. volumes:
  20. postgres-data:
  21. driver: local
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement