Giter VIP home page Giter VIP logo

Comments (2)

bsinou avatar bsinou commented on August 19, 2024

Hi. Could you please precise what image you are using ?
It is not the official image from the Docker's hub: pydio/cells:latest, is it ?

from cells.

instantdreams avatar instantdreams commented on August 19, 2024

Here's my compose.yaml file:

services:
  pydio:
    image: pydio/cells:latest
    container_name: pydio-cells
    hostname: files
    domainname: example.com
    ports:
      - "8808:8080" # web ui
    environment:
      - TZ=America/Edmonton
      - CELLS_INSTALL_YAML=/pydio/config/install-conf.yml
      - CELLS_BIND=0.0.0.0:8080
      - CELLS_SITE_BIND=0.0.0.0:8080
      - CELLS_EXTERNAL=https://files.example.com
      - CELLS_SITE_EXTERNAL=https://files.example.com
      - CELLS_NO_TLS=1
      - CELLS_LOG=info
      - CELLS_LOG_LEVEL=production
      - CELLS_DEFAULT_DS_STRUCT=true
    volumes:
      - /srv/pydio/config/install-conf.yml:/pydio/config/install-conf.yml:ro
      - /srv/pydio/cells:/var/cells
      - /media/storage/cells/:/var/cells/data
      - /media:/media
      - /etc/timezone:/etc/timezone:ro
      - /etc/localtime:/etc/localtime:ro
    restart: unless-stopped
  pydio-db:
    image: mysql:latest
    container_name: pydio-db
    hostname: pydio-db
    domainname: example.com
    command: [mysqld, --character-set-server=utf8mb4, --collation-server=utf8mb4_unicode_ci]
    ports:
      - "3306:3306" # mysql
    environment:
      - TZ=America/Edmonton
      - MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
      - MYSQL_DATABASE=${MYSQL_DATABASE}
      - MYSQL_USER=${MYSQL_USER}
      - MYSQL_PASSWORD=${MYSQL_PASSWORD}
    volumes:
      - /srv/pydio/mysql:/var/lib/mysql
      - /etc/timezone:/etc/timezone:ro
      - /etc/localtime:/etc/localtime:ro
    restart: unless-stopped

Here's me trying to pull the latest image to confirm that it is up to date:

$ docker pull pydio/cells:latest
latest: Pulling from pydio/cells
Digest: sha256:5588c806d566ee1d83a1029015aff07fd9720363286127718f495317e1c50f80
Status: Image is up to date for pydio/cells:latest
docker.io/pydio/cells:latest

So yup, pydio/cells:latest is correct.

from cells.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.