Advertisement
Guest User

Untitled

a guest
Sep 30th, 2018
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. version: '3'
  2. services:
  3. db:
  4. image: postgres
  5. environment:
  6. POSTGRES_DB: Shoes
  7. POSTGRES_USER: postgres
  8. POSTGRES_PASSWORD: root
  9. ports:
  10. - 5432:5432
  11. app:
  12. build: .
  13. command: ["go", "run", "main.go"]
  14. volumes:
  15. - .:/go/src/app
  16. ports:
  17. - "8080:8080"
  18. depends_on:
  19. - db
  20. links:
  21. - db
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement