Advertisement
Guest User

Untitled

a guest
Feb 12th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. version: '2'
  2. volumes:
  3. restyaboard_db:
  4. driver: local
  5. restyaboard_media:
  6. driver: local
  7. services:
  8. restyaboard:
  9. image: restyaplatform/restyaboard:dev
  10. environment:
  11. POSTGRES_DB: restyaboard
  12. POSTGRES_HOST: postgres
  13. POSTGRES_PASSWORD: admin
  14. POSTGRES_USER: admin
  15. SMTP_DOMAIN: domain
  16. SMTP_USERNAME: user
  17. SMTP_PASSWORD: pass
  18. SMTP_SERVER: server
  19. SMTP_PORT: 465
  20. TZ: Etc/UTC
  21. volumes:
  22. - restyaboard_media:/usr/share/nginx/html/media
  23. ports:
  24. - "8081:80"
  25. postgres:
  26. image: postgres:9-alpine
  27. environment:
  28. POSTGRES_DB: restyaboard
  29. POSTGRES_HOST: postgres
  30. POSTGRES_PASSWORD: admin
  31. POSTGRES_USER: admin
  32. volumes:
  33. - restyaboard_db:/var/lib/postgresql/data
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement