Skip to content

Instantly share code, notes, and snippets.

@pedrorvidal
Last active November 10, 2022 21:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pedrorvidal/ba075cf36e641e1907f3a349933e03ff to your computer and use it in GitHub Desktop.
Save pedrorvidal/ba075cf36e641e1907f3a349933e03ff to your computer and use it in GitHub Desktop.
###############################################################################
# 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