Maxime LAPLANCHE

Results 9 comments of Maxime LAPLANCHE

I have the same problem

hi @loic-sharma, BaGet scheduled to accept a basepath?

Hi, I need this feature. Do you need help completing it? Have a nice day

Hi @dbitouze, Can you check that you don't already have a stack with a port 80 on your machine? - With this command : `docker ps`. Checked if a container...

Hello I think it's a problem with your machine, not the docker image. Do you have any other presentation services on it?

Hello, Can you use Dolibarr-DB in variable DOLI_DB_HOST ? ``` --- version: '3.7' services: dolibarr: image: tuxgasy/dolibarr:16 restart: always depends_on: - db volumes: - /volume1/docker/dolidoc:/var/www/documents - /volume1/docker/doliscripts:/var/www/scripts - /volume1/docker/dolicustom:/var/www/custom networks:...

Hi, try this : ``` version: 3.7 services: mariadb: image: lscr.io/linuxserver/mariadb:latest container_name: mariadb environment: - PUID=1000 - PGID=1000 - MYSQL_ROOT_PASSWORD=root - TZ=Europe/London volumes: - ./config:/config ports: - 3308:3306 restart: always...

Finally, I found the problem. I'm working in a devcontainer in VSCode. The `docker.sock` was not mounted in my devcontainer. Is it possible to ping the docker.sock to have an...