You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.5 KiB
68 lines
1.5 KiB
version: '3'
|
|
|
|
services:
|
|
db:
|
|
image: mysql:latest
|
|
restart: always
|
|
command:
|
|
- mysqld
|
|
- --max_connections=3000
|
|
- --wait_timeout=600
|
|
- --interactive_timeout=600
|
|
- --thread_cache_size=50
|
|
- --default-authentication-plugin=mysql_native_password
|
|
- --character-set-server=utf8
|
|
- --collation-server=utf8_general_ci
|
|
environment:
|
|
- MYSQL_DATABASE=djangoblog
|
|
- MYSQL_ROOT_PASSWORD=DjAnGoBlOg!2!Q@W#E
|
|
ports:
|
|
- 3306:3306
|
|
volumes:
|
|
- ./bin/datas/mysql/:/var/lib/mysql
|
|
depends_on:
|
|
- redis
|
|
container_name: db
|
|
|
|
djangoblog:
|
|
build: .
|
|
restart: always
|
|
command: bash -c 'sh /code/djangoblog/bin/docker_start.sh'
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- ./collectedstatic:/code/djangoblog/collectedstatic
|
|
- ./logs:/code/djangoblog/logs
|
|
environment:
|
|
- DJANGO_MYSQL_DATABASE=djangoblog
|
|
- DJANGO_MYSQL_USER=root
|
|
- DJANGO_MYSQL_PASSWORD=DjAnGoBlOg!2!Q@W#E
|
|
- DJANGO_MYSQL_HOST=db
|
|
- DJANGO_MYSQL_PORT=3306
|
|
- DJANGO_REDIS_URL=redis:6379
|
|
links:
|
|
- db
|
|
- redis
|
|
depends_on:
|
|
- db
|
|
container_name: djangoblog
|
|
nginx:
|
|
restart: always
|
|
image: nginx:latest
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
volumes:
|
|
- ./bin/nginx.conf:/etc/nginx/nginx.conf
|
|
- ./collectedstatic:/code/djangoblog/collectedstatic
|
|
links:
|
|
- djangoblog:djangoblog
|
|
container_name: nginx
|
|
|
|
redis:
|
|
restart: always
|
|
image: redis:latest
|
|
container_name: redis
|
|
ports:
|
|
- "6379:6379"
|