Advertisement
Guest User

Untitled

a guest
Feb 4th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. redmine:
  2. image: redmine:passenger
  3. links:
  4. - data:mysql
  5. environment:
  6. - REDMINE_LANG=en
  7. ports:
  8. - "1234:3000"
  9. volumes_from:
  10. - redmine-volumes
  11.  
  12. redmine-volumes:
  13. image: redmine:passenger
  14. command: "true"
  15. volumes:
  16. - ./backup/files:/usr/src/redmine/files
  17. - ./plugins:/usr/src/redmine/plugins
  18. - ./themes:/usr/src/redmine/public/themes
  19. - ./backup/plugin_assets:/usr/src/redmine/public/plugin_assets
  20.  
  21. data:
  22. image: mysql
  23. environment:
  24. - MYSQL_ROOT_PASSWORD=palme17
  25. - MYSQL_DATABASE=redmine
  26. - MYSQL_USER=redmine
  27. - MYSQL_PASSWORD=redmine
  28. volumes_from:
  29. - data-volumes
  30.  
  31. data-volumes:
  32. image: mysql
  33. command: 'true'
  34. volumes:
  35. - ./backup/mysqldata:/var/lib/mysql
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement