PHP Classes

File: docker-compose.yml

Recommend this page to a friend!
  Classes of stelin   swoft   docker-compose.yml   Download  
File: docker-compose.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: swoft
Framework to develop coroutine based application
Author: By
Last change:
Date: 5 years ago
Size: 849 bytes
 

Contents

Class file image Download
version: '3.4' services: swoft: image: swoft/swoft # for local develop # command: php -S 127.0.0.1:13300 container_name: swoft-srv environment: - APP_ENV=dev - TIMEZONE=Asia/Shanghai restart: always depends_on: - mysql - redis ports: - "18306:18306" - "18307:18307" - "18308:18308" volumes: - ./:/var/www/swoft # - ./runtime/ng-conf:/etc/nginx # - ./runtime/logs:/var/log mysql: image: mysql container_name: mysql-srv environment: - MYSQL_ROOT_PASSWORD=123456 ports: - "13306:3306" volumes: - ./runtime/data/mysql:/var/lib/mysql restart: always redis: container_name: redis-srv image: redis:4-alpine ports: - "16379:6379" sysctls: net.core.somaxconn: 65535 restart: always