12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- version : '3'
- services:
- mysql:
- container_name: mysql
- image: mysql:5.7
- build:
- context: .
- dockerfile: mysql-dockerfile
- ports:
- - "3306:3306"
- volumes:
- - ./mysql/conf:/etc/mysql/conf.d
- - ./mysql/logs:/logs
- - ./mysql/data:/var/lib/mysql
- command: [
- 'mysqld',
- '--innodb-buffer-pool-size=80M',
- '--character-set-server=utf8mb4',
- '--collation-server=utf8mb4_unicode_ci',
- '--default-time-zone=+8:00',
- '--lower-case-table-names=1'
- ]
- environment:
- MYSQL_DATABASE: landian
- MYSQL_ROOT_PASSWORD: ld123456
- redis:
- image: redis:5.0
- ports:
- - "6379:6379"
- restart: always
- landian-server:
- container_name: landian-server
- build:
- context: .
- dockerfile: landian-dockerfile
- ports:
- - "80:80"
- volumes:
- - ./landian/logs:/home/landian/logs
- - ./landian/uploadPath:/home/landian/uploadPath
- depends_on:
- - landian-mysql
- links:
- - landian-mysqlw
|