diff --git a/api/config/.gitignore b/api/config/.gitignore index e7d849d..059a02c 100644 --- a/api/config/.gitignore +++ b/api/config/.gitignore @@ -1 +1 @@ -main-local.php +config-local.php diff --git a/console/config/.gitignore b/console/config/.gitignore index e7d849d..059a02c 100644 --- a/console/config/.gitignore +++ b/console/config/.gitignore @@ -1 +1 @@ -main-local.php +config-local.php diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index 0298f6d..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,63 +0,0 @@ -version: '2' -services: - app: - build: - dockerfile: Dockerfile-dev - context: . - depends_on: - - db - - redis - - rabbitmq - volumes: - - ./:/var/www/html/ - env_file: .env - - web: - build: ./docker/nginx - volumes_from: - - app - links: - - app:php - env_file: .env - networks: - - default - - nginx-proxy - - db: - build: ./docker/mariadb - env_file: .env - volumes: - - ./data/mysql:/var/lib/mysql - - redis: - image: redis:3.0-alpine - volumes: - - ./data/redis:/data - - rabbitmq: - image: rabbitmq:3.6-management - env_file: .env - environment: - - VIRTUAL_HOST=rabbitmq.account.ely.by.local - - VIRTUAL_PORT=15672 - networks: - - default - - nginx-proxy - - phpmyadmin: - build: ./docker/phpmyadmin - environment: - - PMA_ARBITRARY=1 - - PMA_USER=root - - PMA_PASSWORD= - - VIRTUAL_HOST=pma.account.ely.by.local - depends_on: - - db - networks: - - default - - nginx-proxy - -networks: - nginx-proxy: - external: - name: nginx-proxy