Guest User

Untitled

a guest
Jul 23rd, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. version: "3"
  2. services:
  3. node:
  4. image: "node:10"
  5. user: "node"
  6. working_dir: /home/node/app
  7. environment:
  8. - NODE_ENV=production
  9. volumes:
  10. - ./:/home/node/app
  11. expose:
  12. - "8080"
  13. command: "npm start"
  14. links:
  15. - db
  16. restart: always
  17. db:
  18. image: postgres
  19. restart: always
  20. environment:
  21. POSTGRES_PASSWORD: root
  22. POSTGRES_USER: root
  23. POSTGRES_DB: focus
  24. volumes:
  25. - database_volume:/var/lib/postgresql/data
  26. volumes:
  27. database_volume:
Add Comment
Please, Sign In to add comment