我常用的一些基于docker安装的app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
1.1KB

  1. version: '3'
  2. services:
  3. blog:
  4. image: ghost
  5. ports:
  6. - "8002:2368"
  7. deploy:
  8. placement:
  9. constraints: [node.role == manager]
  10. volumes:
  11. - data:/var/lib/ghost/content
  12. environment:
  13. mail_transport: SMTP
  14. mail_options_service: smtp.139.com
  15. mail_options_auth_user: shaojj
  16. mail_options_auth_pass: imwolf
  17. volumes:
  18. data: