New deploy issues

Hi Guys,

Im new using pydio, I install on portainer with this compose:

version: ‘3.7’
services:

cells:
image: pydio/cells:latest
hostname: pydio
container_name: pydio-cell
restart: unless-stopped
ports: [“8080:8080”]
volumes:
- cells:/var/cells
- cells:/var/cells/data

mysql:
image: mysql:8
container_name: pydio-mysql
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: 123456789
MYSQL_DATABASE: cells
MYSQL_USER: pydio
MYSQL_PASSWORD: 123456789
command: [mysqld, --character-set-server=utf8mb4, --collation-server=utf8mb4_unicode_ci]
volumes:
- mysql:/var/lib/mysql

volumes:
cells:
driver: local
driver_opts:
type: none
device: /pods/volumes/pydio/
o: bind

mysql:
driver: local
driver_opts:
type: none
device: /pods/volumes/pydio/
o: bind

deploy and install ok, but have this issue when create o access default files:

2024-12-13T17:18:30.898Z WARN pydio.grpc.data.sync.cellsdata Cannot contact s3 service (bucket cellsdata), will retry in 1s {error: The specified bucket does not exist}
2024-12-13T17:18:30.914Z WARN pydio.grpc.data.sync.versions Cannot contact s3 service (bucket versions), will retry in 1s {error: The specified bucket does not exist}
2024-12-13T17:18:30.981Z WARN pydio.grpc.data.sync.thumbnails Cannot contact s3 service (bucket thumbs), will retry in 1s {error: The specified bucket does not exist}
2024-12-13T17:18:31.016Z WARN pydio.grpc.data.sync.personal Cannot contact s3 service (bucket personal), will retry in 1s {error: The specified bucket does not exist}
2024-12-13T17:18:32.691Z ERROR Could not find DataSource pydiods1 {currentSources: }
2024-12-13T17:18:32.691Z ERROR pydio.rest.meta Cannot find DataSourceInfo for pydiods1 {error: Could not find DataSource pydiods1}
2024-12-13T17:18:32.692Z WARN pydio.rest.meta Rest Error 404 {error: Could not find DataSource pydiods1}

in web :
parser is unable to parse response.

anyone have any idea how solve?

Thanks

Only one volumes enough

volumes:
- cells:/var/cells