Git Product home page Git Product logo

Comments (3)

maxpou avatar maxpou commented on August 24, 2024

Hi,
My Docker stack run on Ubuntu sorry.
Can you show me your docker-compose.yml file ?

from docker-symfony.

kinger-de avatar kinger-de commented on August 24, 2024

Thank you for your answer and sorry for my late reply.
Yes, i think, it is a problem with the UAC (User Account Control) on my windows system. Normally i use an regular account without admin-rights. Docker for windows has trouble with this and can't get access to my profile folder.

I switched to the old implementation of Docker which is using VirtualBox. This seems to work.

FYI, this is my current docker file:

version: '2'

services:
    base:
        image: busybox:musl
        volumes:
            - ./symfony:/var/www/symfony
            - ./logs/symfony:/var/www/symfony/var/logs
            - ./logs/nginx/:/var/log/nginx
            - /var/www/symfony/var/cache
            - /var/www/symfony/var/logs
            - /tmp
        tty: true
    php:
        build: php
        expose:
            - "9000"
        links:
            - mysql
            - redis
        volumes_from:
            - base
    nginx:
        build: nginx
        ports:
            - 80:80
        links:
            - php
        volumes_from:
            - base
    mysql:
        image: mysql
        ports:
            - 3306:3306
        volumes:
            - "./.data/db:/var/lib/mysql"
        environment:
            MYSQL_ROOT_PASSWORD: 
            MYSQL_DATABASE: 
            MYSQL_USER: 
            MYSQL_PASSWORD: 
    redis:
        image: redis:alpine
        ports:
            - 6379:6379
    elk:
        image: willdurand/elk
        ports:
            - 81:80
        volumes:
            - ./elk/logstash:/etc/logstash
            - ./elk/logstash/patterns:/opt/logstash/patterns
        volumes_from:
            - base

from docker-symfony.

maxpou avatar maxpou commented on August 24, 2024

Good, if everything works, I close this issue!

from docker-symfony.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.