[Help] install nextcloud TOS 7 F2-223
Posted: 12 Feb 2026, 01:54
Hello,
Nth attempt to install Nextcloud...
The one that's causing problems:
- in command mode:
docker run -d --name=portainer_ce --restart always -v /Volume1/docker/portainer_ce/data:/data -v /var/run/docker.sock:/var/run/docker.sock -p 9000:9000 --pid=host portainer/portainer-ce:latest
- with this file (which I am trying to customise...)
And I have this :
Thank you for your help...
(Vous pouvez me répondre en français
)
JB49
Nth attempt to install Nextcloud...
The one that's causing problems:
- in command mode:
docker run -d --name=portainer_ce --restart always -v /Volume1/docker/portainer_ce/data:/data -v /var/run/docker.sock:/var/run/docker.sock -p 9000:9000 --pid=host portainer/portainer-ce:latest
- with this file (which I am trying to customise...)
Code: Select all
services: # List of software to be parameterized
db: # Database to store users and datas
image: mariadb:10.6 # Version without bug. V11 don't work well
restart: always # will start with docker engine... if docker engine starts lol (TOS bug)
command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW # IDK
volumes: # links between NAS files and container files
- db:/var/lib/mysql
environment: # variables for database access
- MYSQL_ROOT_PASSWORD=*****************
- MYSQL_DATABASE=nextcloud
- MYSQL_USER=adminnextcloud
- MYSQL_PASSWORD=**************
app: # nextcloud app that will use the database
image: nextcloud:29
depends_on: # will wait database before build
- db
restart: always
ports: # will be available on http://x.x.x.x:8082
- 8082:80
links: # connected to database
- db
volumes:
- nextcloud:/var/www/html
environment:
- MYSQL_HOST=localhost:3306
- MYSQL_DATABASE=nextcloud
- MYSQL_USER=adminnextcloud
- MYSQL_PASSWORD=**************
- OVERWRITECLIURL=http://192.168.1.14 # IP TO COMPLETE
# - OVERWRITEPROTOCOL=https # ONLY IF YOU HAVE HTTPS
volumes:
nextcloud:
db:Code: Select all
Erreur
Error while trying to create admin account: An exception occurred in the driver: SQLSTATE[HY000] [2002] No such file or directory(Vous pouvez me répondre en français
JB49