Closed oskarcalvo closed 3 years ago
I'm with OsX Mojave, Docker version 19.03.5, build 633a0ea I have uncomment the line of code that should do it, but nothing happens.
This is the docker-compose I'm using:
version: "3" services: mariadb: image: wodby/mariadb:$MARIADB_TAG container_name: "${PROJECT_NAME}_mariadb" stop_grace_period: 30s environment: MYSQL_ROOT_PASSWORD: $DB_ROOT_PASSWORD MYSQL_DATABASE: $DB_NAME MYSQL_USER: $DB_USER MYSQL_PASSWORD: $DB_PASSWORD volumes: # - ./mariadb-init:/docker-entrypoint-initdb.d # Place init .sql file(s) here. - ./data/database:/var/lib/mysql php: image: wodby/drupal-php:$PHP_TAG container_name: "${PROJECT_NAME}_php" environment: PHP_SENDMAIL_PATH: /usr/sbin/sendmail -t -i -S mailhog:1025 # PHP_SENDMAIL_PATH: /usr/sbin/sendmail -t -i -S opensmtpd:25 DB_HOST: $DB_HOST DB_PORT: $DB_PORT DB_USER: $DB_USER DB_PASSWORD: $DB_PASSWORD DB_NAME: $DB_NAME DB_DRIVER: $DB_DRIVER PHP_FPM_USER: wodby PHP_FPM_GROUP: wodby COLUMNS: 80 # Set 80 columns for docker exec -it. ## Read instructions at https://wodby.com/docs/stacks/php/local/#xdebug # PHP_XDEBUG: 1 # PHP_XDEBUG_DEFAULT_ENABLE: 1 # PHP_XDEBUG_REMOTE_CONNECT_BACK: 0 # PHP_IDE_CONFIG: serverName=my-ide # PHP_XDEBUG_IDEKEY: "vscode" # PHP_XDEBUG_REMOTE_HOST: host.docker.internal # Docker 18.03+ Mac/Win # PHP_XDEBUG_REMOTE_HOST: 172.17.0.1 # Linux # PHP_XDEBUG_REMOTE_HOST: 10.254.254.254 # macOS, Docker < 18.03 # PHP_XDEBUG_REMOTE_HOST: 10.0.75.1 # Windows, Docker < 18.03 # PHP_XDEBUG_REMOTE_LOG: /tmp/php-xdebug.log ## PHPUnit Drupal testing configurations # SIMPLETEST_BASE_URL: "http://nginx" # SIMPLETEST_DB: "${DB_DRIVER}://${DB_USER}:${DB_PASSWORD}@${DB_HOST}/${DB_NAME}#tests_" # MINK_DRIVER_ARGS_WEBDRIVER: '["chrome", {"browserName":"chrome","goog:chromeOptions":{"args":["--disable-gpu","--headless"]}}, "http://chrome:9515"]' volumes: - ../fuentes:/var/www/html ## For macOS users (https://wodby.com/docs/stacks/drupal/local#docker-for-mac) # - ./:/var/www/html:cached # User-guided caching # - docker-sync:/var/www/html # Docker-sync ## For XHProf and Xdebug profiler traces # - files:/mnt/files apache: image: wodby/apache:$APACHE_TAG container_name: "${PROJECT_NAME}_apache" depends_on: - php environment: APACHE_LOG_LEVEL: debug APACHE_BACKEND_HOST: php APACHE_VHOST_PRESET: php APACHE_DOCUMENT_ROOT: /var/www/html/web volumes: - ../fuentes:/var/www/html ## For macOS users (https://wodby.com/docs/stacks/drupal/local#docker-for-mac) ## - ./:/var/www/html:cached # User-guided caching ## - docker-sync:/var/www/html # Docker-sync # labels: # - "traefik.http.routers.${PROJECT_NAME}_apache.rule=Host(`${PROJECT_BASE_URL}`)" # blackfire: # image: blackfire/blackfire # container_name: "${PROJECT_NAME}_blackfire" # environment: # BLACKFIRE_SERVER_ID: XXXXX # BLACKFIRE_SERVER_TOKEN: YYYYY portainer: image: portainer/portainer container_name: "${PROJECT_NAME}_portainer" command: --no-auth -H unix:///var/run/docker.sock volumes: - /var/run/docker.sock:/var/run/docker.sock labels: - "traefik.http.routers.${PROJECT_NAME}_portainer.rule=Host(`portainer.${PROJECT_BASE_URL}`)" traefik: image: traefik:v2.0 container_name: "${PROJECT_NAME}_traefik" command: --api.insecure=true --providers.docker ports: - '8000:80' # - '8080:8080' # Dashboard volumes: - /var/run/docker.sock:/var/run/docker.sock #volumes: ## Docker-sync for macOS users # docker-sync: # external: true ## For Xdebug profiler # files:
Thanks
Oskar
Are you trying to import or export db? Have you read https://wodby.com/docs/stacks/drupal/local/#mariadb? What's in mariadb logs?
I'm with OsX Mojave, Docker version 19.03.5, build 633a0ea I have uncomment the line of code that should do it, but nothing happens.
This is the docker-compose I'm using:
Thanks
Oskar