Guest User

Untitled

a guest
Dec 19th, 2018
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. version: '3'
  2. services:
  3. postgres:
  4. image: postgres
  5. environment:
  6. - POSTGRES_USER: ${DB_USERNAME}
  7. - POSTGRES_PASSWORD: ${DB_PASSWORD}
  8.  
  9. app:
  10. build: .
  11. command: adonis serve --dev
  12. env_file:
  13. - .env
  14. environment:
  15. - DB_HOST=postgres
  16. ports:
  17. - "3333:3333"
  18. depends_on:
  19. - postgres
Add Comment
Please, Sign In to add comment