diff --git a/home/pierreau/Documents/_Mes documents/_Job/_Formations/_Shares/Docker/Environment/compose.yaml b/home/pierreau/Documents/_Mes documents/_Job/_Formations/_Shares/Docker/Environment/compose.yaml deleted file mode 100644 index 6ede08f..0000000 --- a/home/pierreau/Documents/_Mes documents/_Job/_Formations/_Shares/Docker/Environment/compose.yaml +++ /dev/null @@ -1,24 +0,0 @@ -services: - - mysql: - image: mysql:latest - container_name: mysql.env - restart: always - ports: - - 3306:3306 - env_file: - - .env - volumes: - - ./config/mysql/my.cnf:/etc/mysql/conf.d/my.cnf - - mysqldata:/var/lib/mysql - - phpmyadmin: - image: phpmyadmin:latest - container_name: phpmyadmin.env - restart: on-failure:3 - ports: - - 8080:80 - environment: - - PMA_ARBITRARY=1 -volumes: - mysqldata: