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.
84 lines
1.9 KiB
84 lines
1.9 KiB
version: '3.6'
|
|
|
|
services:
|
|
nginx:
|
|
image: nginx
|
|
restart: always
|
|
networks:
|
|
default:
|
|
aliases:
|
|
- loc.10ballov
|
|
volumes:
|
|
- ${PROJECTS_DIR}:/usr/share/nginx/html
|
|
- ./config/nginx/conf.d:/etc/nginx/conf.d
|
|
- ./config/nginx/includes.d:/etc/nginx/includes.d
|
|
- ./log/nginx:/var/log/nginx
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
expose:
|
|
- 80
|
|
php-fpm:
|
|
build:
|
|
context: ./dockerfiles/php-fpm
|
|
args:
|
|
- INSTALL_PEAR_MAIL=${INSTALL_PEAR_MAIL}
|
|
- PHP_OPT_SHORT_OPEN_TAG=${PHP_OPT_SHORT_OPEN_TAG}
|
|
- PHP_OPT_MAX_EXECUTION_TIME=${PHP_OPT_MAX_EXECUTION_TIME}
|
|
- PHP_OPT_MEMORY_LIMIT=${PHP_OPT_MEMORY_LIMIT}
|
|
- PHP_OPT_UPLOAD_MAX_FILESIZE=${PHP_OPT_UPLOAD_MAX_FILESIZE}
|
|
restart: always
|
|
volumes:
|
|
- ${PROJECTS_DIR}:/usr/share/nginx/html
|
|
expose:
|
|
- 9000
|
|
workspace:
|
|
build:
|
|
context: ./dockerfiles/workspace
|
|
args:
|
|
- PUID=${WORKSPACE_PUID}
|
|
- PGID=${WORKSPACE_PGID}
|
|
- TZ=${WORKSPACE_TIMEZONE}
|
|
restart: always
|
|
volumes:
|
|
- ${PROJECTS_DIR}:/var/www
|
|
extra_hosts:
|
|
- "dockerhost:${DOCKER_HOST_IP}"
|
|
secrets:
|
|
- user_ssh_key
|
|
- user_known_hosts
|
|
- composer_auth
|
|
db:
|
|
image: mariadb
|
|
restart: always
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: 123456
|
|
ports:
|
|
- "3306:3306"
|
|
pma:
|
|
image: phpmyadmin/phpmyadmin
|
|
restart: always
|
|
environment:
|
|
PMA_HOST: db
|
|
PMA_USER: root
|
|
PMA_PASSWORD: 123456
|
|
ports:
|
|
- "81:80"
|
|
redis:
|
|
image: redis
|
|
restart: always
|
|
command: [ "redis-server", "/usr/local/etc/redis/redis.conf" ]
|
|
volumes:
|
|
- ./config/redis/redis.conf:/usr/local/etc/redis/redis.conf
|
|
|
|
# Must be copied into main docker-compose yml-file
|
|
volumes:
|
|
database:
|
|
|
|
secrets:
|
|
user_ssh_key:
|
|
file: ~/.ssh/id_rsa
|
|
user_known_hosts:
|
|
file: ~/.ssh/known_hosts
|
|
composer_auth:
|
|
file: ~/.composer/auth.json
|