Last active
November 10, 2022 21:18
-
-
Save pedrorvidal/ba075cf36e641e1907f3a349933e03ff to your computer and use it in GitHub Desktop.
This file contains 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
############################################################################### | |
# Generated on phpdocker.io # | |
############################################################################### | |
version: '3.1' | |
services: | |
memcached: | |
image: 'memcached:alpine' | |
mailhog: | |
image: 'mailhog/mailhog:latest' | |
ports: | |
- '21001:8025' | |
redis: | |
image: 'redis:alpine' | |
mariadb: | |
image: 'mariadb:10.6' | |
working_dir: /application | |
volumes: | |
- '.:/application' | |
environment: | |
- MYSQL_ROOT_PASSWORD=root | |
- MYSQL_DATABASE=supergestao | |
- MYSQL_USER=sg_user | |
- MYSQL_PASSWORD=user | |
ports: | |
- '21003:3306' | |
clickhouse: | |
image: 'yandex/clickhouse-server:latest' | |
webserver: | |
image: 'nginx:alpine' | |
working_dir: /application | |
volumes: | |
- '.:/application' | |
- './phpdocker/nginx/nginx.conf:/etc/nginx/conf.d/default.conf' | |
ports: | |
- '21000:80' | |
php-fpm: | |
build: phpdocker/php-fpm | |
working_dir: /application | |
volumes: | |
- '.:/application' | |
- './phpdocker/php-fpm/php-ini-overrides.ini:/etc/php/7.4/fpm/conf.d/99-overrides.ini' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment