在ubuntu下 搭建owncloud

用docker-compose启动,owncloud.yml文件内容

owncloud:
  image: owncloud:9
  restart: always   开机启动
  links:
    - mysql:mysql   连接到mysql
  volumes:
    - /srv/docker/owncloud:/owncloud
  ports:
      - 10280:80
mysql:
  image: mysql:5.7
  restart: always
  environment:
    MYSQL_ROOT_PASSWORD: 21vianet

 

文章出处;

https://yq.aliyun.com/articles/67160

相关文章:

  • 2021-10-28
  • 2022-12-23
  • 2021-07-11
  • 2021-06-16
  • 2022-01-16
  • 2021-12-21
  • 2022-12-23
猜你喜欢
  • 2021-11-29
  • 2021-10-12
  • 2022-12-23
  • 2021-05-26
  • 2021-12-19
  • 2021-08-26
  • 2021-08-21
相关资源
相似解决方案