This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3' | |
| services: | |
| pmm-server: | |
| image: percona/pmm-server:3 | |
| platform: "linux/amd64" # Specifies that Docker should use the image for the amd64 architecture, which is necessary if the container doesn't support ARM and your host system is ARM (e.g., Mac with Apple Silicon). | |
| container_name: pmm-server | |
| ports: | |
| - 8080:80 | |
| - 443:8443 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3' | |
| services: | |
| pmm-server: | |
| image: percona/pmm-server:3 | |
| platform: "linux/amd64" # Specifies that Docker should use the image for the amd64 architecture, which is necessary if the container doesn't support ARM and your host system is ARM (e.g., Mac with Apple Silicon). | |
| container_name: pmm-server | |
| ports: | |
| - 8080:80 | |
| - 443:8443 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM arm64v8/php:8.2-fpm | |
| RUN apt-get -y update \ | |
| && apt-get install -y libssl-dev pkg-config libzip-dev unzip git | |
| RUN pecl install zlib zip mongodb \ | |
| && docker-php-ext-enable zip \ | |
| && docker-php-ext-enable mongodb | |
| # SETUP PHP-FPM CONFIG SETTINGS (max_children / max_requests) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM php:8.2-fpm | |
| # Use the default production configuration | |
| RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini" | |
| RUN apt-get update | |
| RUN apt-get install -y libssl-dev pkg-config git | |
| RUN apt-get install -y unzip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "3" | |
| services: | |
| pmm-server: | |
| image: "perconalab/pmm-server:dev-latest" | |
| ports: | |
| - "443:443" | |
| environment: | |
| - SERVER_USER=pmm | |
| - SERVER_PASSWORD=pmm |