Jump to content
XPEnology Community

Cosaque

Rookie
  • Posts

    2
  • Joined

  • Last visited

Posts posted by Cosaque

  1. well ty for this !

    this docker_compose work well !

     

    version: '3.3'
    
    services:
      Xpenology:
        image: "uxora/xpenology:latest"
        stdin_open: true # docker run -i
        tty: true        # docker run -t
        container_name: Xpenology
        restart: always
        volumes:
          - /home/docker/xpenology/data:/datashare
        ports:
          - '5000:5000'
        environment:
          - RAM=512
          - DISK_SIZE=32G
          - 'BOOTLOADER_URL=http://synoboot.linkhere.fr/synoboot_103b_ds3615xs_virtio_9p.img'
          - BOOTLOADER_AS_USB=Y
          - VM_ENABLE_VIRTIO=Y

     

  2. i found the github https://github.com/segator/xpenology-docker

    and the docker image https://hub.docker.com/r/segator/xpenology

    i'm looking for version 6.2.3 of this :)

    tryed to make mine but without success..


    with this docker-compose, it work perfectly but in 6.0.2 ..

    Citation

    version: '3'

    services:
      Xpenology:
        image: "segator/xpenology:latest"
        stdin_open: true # docker run -i
        tty: true        # docker run -t
        container_name: Xpenology
        restart: always
        volumes:
          - /home/docker/xpenology/data:/image

        port:

          - 5000:5000
        environment:
          - THREADS=1
          - CORES=2
          - MEMORY=2048
          - DISK_SIZE=20G
          - AUTO_ATTACH=Y
        privileged: true

     

×
×
  • Create New...