File size: 653 Bytes
0d5b03e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
version: '3.8'

services:
  nginx:
    image: nginx:latest
    ports:
      - "1080:80"
    volumes:
      - ./website:/var/www/html
      - ./nginx.conf:/etc/nginx/conf.d/default.conf
      #- ./ssl:/etc/nginx/ssl
      - ./fastcgi-php.conf:/etc/nginx/snippets/fastcgi-php.conf
      - ./www/wwwlogs:/www/wwwlogs
    user: root
    depends_on:
      - php

  php:
    build: .
    user: root
    volumes:
      - ./website:/var/www/html

  db:
    image: mysql:5.7
    environment:
      MYSQL_ROOT_PASSWORD: Shijie11Shijie11
      MYSQL_DATABASE: epay
      MYSQL_USER: epay
      MYSQL_PASSWORD: Shijie11Shijie11
        #ports:
      #- "3306:3306"