From a3ffb3e6d8c377911575153cf3591f87634c79c1 Mon Sep 17 00:00:00 2001 From: M_Viper Date: Mon, 12 Feb 2024 21:22:48 +0000 Subject: [PATCH] Dateien nach "install-phpmyadmin-on-docker" hochladen --- .../docker-compose.yaml | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 install-phpmyadmin-on-docker/docker-compose.yaml diff --git a/install-phpmyadmin-on-docker/docker-compose.yaml b/install-phpmyadmin-on-docker/docker-compose.yaml new file mode 100644 index 0000000..7932e69 --- /dev/null +++ b/install-phpmyadmin-on-docker/docker-compose.yaml @@ -0,0 +1,30 @@ +# Using version 3 of the Docker Compose file format +version: "3" + +# Definition of the services to be run +services: + # Service name: phpmyadmin + phpmyadmin: + # Docker image to be used for this service + image: phpmyadmin/phpmyadmin + + # Name of the container once it's up and running + container_name: phpmyadmin + + # Environment variables passed to the service + environment: + # Host of the database server + PMA_HOST: "[YOUR-dockge-IP]" + + # Port of the database server + PMA_PORT: "3306" + + # Username to connect to the database + PMA_USER: "M_Viper" + + # Password to connect to the database + PMA_PASSWORD: "password" + + # Port mapping: map host's port 8080 to container's port 80 + ports: + - "8080:80"