docker-compose // piwik // error during run Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Come Celebrate our 10 Year Anniversary!How to configure iptables when running DockerPiwik Docker compose error with linnking containersDocker Compose specify .docker directory?Docker Swarm Mode network and load balancing doesn't work for my second serviceDocker-compose up not runningDocker Error When Starting Docker-Compose ProjectUsing Docker Swarm to build an reverse proxy networkDocker Compose returns error “networks have overlapping IPv4”Prevent apache rewriting URLsDocker compose db not starting

Pointing to problems without suggesting solutions

A journey... into the MIND

When speaking, how do you change your mind mid-sentence?

How to get a single big right brace?

Trying to enter the Fox's den

Like totally amazing interchangeable sister outfit accessory swapping or whatever

Can this water damage be explained by lack of gutters and grading issues?

Unix AIX passing variable and arguments to expect and spawn

How to create a command for the "strange m" symbol in latex?

Converting a text document with special format to Pandas DataFrame

Compiling and throwing simple dynamic exceptions at runtime for JVM

“Since the train was delayed for more than an hour, passengers were given a full refund.” – Why is there no article before “passengers”?

Is there a verb for listening stealthily?

Putting Ant-Man on house arrest

What is the evidence that custom checks in Northern Ireland are going to result in violence?

Lights are flickering on and off after accidentally bumping into light switch

Is the Mordenkainen's Sword spell underpowered?

Can a Wizard take the Magic Initiate feat and select spells from the Wizard list?

Coin Game with infinite paradox

What's the difference between using dependency injection with a container and using a service locator?

lm and glm function in R

Recursive calls to a function - why is the address of the parameter passed to it lowering with each call?

Protagonist's race is hidden - should I reveal it?

Short story about an alien named Ushtu(?) coming from a future Earth, when ours was destroyed by a nuclear explosion



docker-compose // piwik // error during run



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Come Celebrate our 10 Year Anniversary!How to configure iptables when running DockerPiwik Docker compose error with linnking containersDocker Compose specify .docker directory?Docker Swarm Mode network and load balancing doesn't work for my second serviceDocker-compose up not runningDocker Error When Starting Docker-Compose ProjectUsing Docker Swarm to build an reverse proxy networkDocker Compose returns error “networks have overlapping IPv4”Prevent apache rewriting URLsDocker compose db not starting



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















I try to switch all my app to docker.



The configuration:



I used nginx as server. With docker i will use it as proxy:



# nginx -v
nginx version: nginx/1.4.6 (Ubuntu)


Docker version:



# docker version
Client:
Version: 1.11.1
API version: 1.23
Go version: go1.5.4
Git commit: 5604cbe
Built: Tue Apr 26 23:30:23 2016
OS/Arch: linux/amd64

Server:
Version: 1.11.1
API version: 1.23
Go version: go1.5.4
Git commit: 5604cbe
Built: Tue Apr 26 23:30:23 2016
OS/Arch: linux/amd64

# docker-compose -version
docker-compose version 1.7.1, build 0a9ab35


The install:



To install piwik, i use the file suggest here:
indiehosters/piwik



But i made some change because i would like:
- i would like to use a custom db so i configure an additional user and a password.
- i would like to use different containers of mysql by app so i change db to piwik_db (i am not sure it's a good practice)
- i would like to get a phpmyadmin access but i don't understand to make it work with the point 2. So i remove the config part.



So my docker compose fil looks like this:



piwik_db:
image: mysql
volumes:
- ./mysql/runtime:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: P@ssR00t
MYSQL_DATABASE: analytics
MYSQL_USER: admin
MYSQL_PASSWORD: P@ssUser
app:
image: piwik
links:
- piwik_db:mysql
volumes:
- ./config:/var/www/html/config
- ./ssmtp.conf:/etc/ssmtp/ssmtp.conf
- ./revaliases:/etc/ssmtp/revaliases
web:
image: nginx
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
- ./etc/letsencrypt:/etc/letsencrypt
links:
- app
volumes_from:
- app
ports:
- "8000:443"
cron:
image: piwik
links:
- piwik_db:mysql
volumes_from:
- app
entrypoint: |
bash -c 'bash -s <<EOF
trap "break;exit" SIGHUP SIGINT SIGTERM
while /bin/true; do
su -s "/bin/bash" -c "/usr/local/bin/php /var/www/html/console core:archive" www-data
sleep 3600
done
EOF'


The result:



When i run docker-compose up, it finish with an error:



ERROR: for web rpc error: code = 2 desc = "oci runtime error: could not synchronise with container process: not a directory"
Traceback (most recent call last):
File "<string>", line 3, in <module>
File "compose/cli/main.py", line 63, in main
AttributeError: 'ProjectError' object has no attribute 'msg'
docker-compose returned -1


When i test which containers was installed, i get



# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
f0388c2a89d3 piwik "bash -c 'bash -s <<E" About a minute ago Up 59 seconds 9000/tcp htdocs_cron_1
ef5d6c8c6e74 mysql "docker-entrypoint.sh" About a minute ago Up About a minute 3306/tcp htdocs_piwik_db_1


Why i get the error?
How to achieve the install?
How to make the app always running?



Thank you in advance for any help.




Ps: I still use my nginx config in site-available:



server 
listen 80;
listen [::]:80;

server_name piwik.domain.com;
# Redirige le HTTP vers le HTTPS #
return 301 https://$server_name$request_uri;

server setup/libs)
deny all;
return 404;


# Pass the PHP scripts to FastCGI server
location ~* .php$
# Prevent Zero-day exploit
try_files $uri =404;
#
fastcgi_split_path_info ^(.+?.php)(/.*)$;
if (!-f $document_root$fastcgi_script_name)
return 404;

fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include /etc/nginx/fastcgi_params;


# Redirect server error pages to the static page
error_page 403 /403.html;
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;

# Exclude from the logs to avoid bloating when it's not available
include drop.conf;











share|improve this question
























  • Just hit this too - the actual exception is a docker-compose bug really, it's excepting when trying to log the 'real' error that would help us. For me this has started happening without updating docker, and without updating the yaml or anything, which is really odd. Did you find a fix/workaround?

    – OJFord
    May 9 '16 at 12:10











  • Not until now. Maybe i will try without docker-compose to test.

    – jbo
    May 11 '16 at 6:03

















1















I try to switch all my app to docker.



The configuration:



I used nginx as server. With docker i will use it as proxy:



# nginx -v
nginx version: nginx/1.4.6 (Ubuntu)


Docker version:



# docker version
Client:
Version: 1.11.1
API version: 1.23
Go version: go1.5.4
Git commit: 5604cbe
Built: Tue Apr 26 23:30:23 2016
OS/Arch: linux/amd64

Server:
Version: 1.11.1
API version: 1.23
Go version: go1.5.4
Git commit: 5604cbe
Built: Tue Apr 26 23:30:23 2016
OS/Arch: linux/amd64

# docker-compose -version
docker-compose version 1.7.1, build 0a9ab35


The install:



To install piwik, i use the file suggest here:
indiehosters/piwik



But i made some change because i would like:
- i would like to use a custom db so i configure an additional user and a password.
- i would like to use different containers of mysql by app so i change db to piwik_db (i am not sure it's a good practice)
- i would like to get a phpmyadmin access but i don't understand to make it work with the point 2. So i remove the config part.



So my docker compose fil looks like this:



piwik_db:
image: mysql
volumes:
- ./mysql/runtime:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: P@ssR00t
MYSQL_DATABASE: analytics
MYSQL_USER: admin
MYSQL_PASSWORD: P@ssUser
app:
image: piwik
links:
- piwik_db:mysql
volumes:
- ./config:/var/www/html/config
- ./ssmtp.conf:/etc/ssmtp/ssmtp.conf
- ./revaliases:/etc/ssmtp/revaliases
web:
image: nginx
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
- ./etc/letsencrypt:/etc/letsencrypt
links:
- app
volumes_from:
- app
ports:
- "8000:443"
cron:
image: piwik
links:
- piwik_db:mysql
volumes_from:
- app
entrypoint: |
bash -c 'bash -s <<EOF
trap "break;exit" SIGHUP SIGINT SIGTERM
while /bin/true; do
su -s "/bin/bash" -c "/usr/local/bin/php /var/www/html/console core:archive" www-data
sleep 3600
done
EOF'


The result:



When i run docker-compose up, it finish with an error:



ERROR: for web rpc error: code = 2 desc = "oci runtime error: could not synchronise with container process: not a directory"
Traceback (most recent call last):
File "<string>", line 3, in <module>
File "compose/cli/main.py", line 63, in main
AttributeError: 'ProjectError' object has no attribute 'msg'
docker-compose returned -1


When i test which containers was installed, i get



# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
f0388c2a89d3 piwik "bash -c 'bash -s <<E" About a minute ago Up 59 seconds 9000/tcp htdocs_cron_1
ef5d6c8c6e74 mysql "docker-entrypoint.sh" About a minute ago Up About a minute 3306/tcp htdocs_piwik_db_1


Why i get the error?
How to achieve the install?
How to make the app always running?



Thank you in advance for any help.




Ps: I still use my nginx config in site-available:



server 
listen 80;
listen [::]:80;

server_name piwik.domain.com;
# Redirige le HTTP vers le HTTPS #
return 301 https://$server_name$request_uri;

server setup/libs)
deny all;
return 404;


# Pass the PHP scripts to FastCGI server
location ~* .php$
# Prevent Zero-day exploit
try_files $uri =404;
#
fastcgi_split_path_info ^(.+?.php)(/.*)$;
if (!-f $document_root$fastcgi_script_name)
return 404;

fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include /etc/nginx/fastcgi_params;


# Redirect server error pages to the static page
error_page 403 /403.html;
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;

# Exclude from the logs to avoid bloating when it's not available
include drop.conf;











share|improve this question
























  • Just hit this too - the actual exception is a docker-compose bug really, it's excepting when trying to log the 'real' error that would help us. For me this has started happening without updating docker, and without updating the yaml or anything, which is really odd. Did you find a fix/workaround?

    – OJFord
    May 9 '16 at 12:10











  • Not until now. Maybe i will try without docker-compose to test.

    – jbo
    May 11 '16 at 6:03













1












1








1


1






I try to switch all my app to docker.



The configuration:



I used nginx as server. With docker i will use it as proxy:



# nginx -v
nginx version: nginx/1.4.6 (Ubuntu)


Docker version:



# docker version
Client:
Version: 1.11.1
API version: 1.23
Go version: go1.5.4
Git commit: 5604cbe
Built: Tue Apr 26 23:30:23 2016
OS/Arch: linux/amd64

Server:
Version: 1.11.1
API version: 1.23
Go version: go1.5.4
Git commit: 5604cbe
Built: Tue Apr 26 23:30:23 2016
OS/Arch: linux/amd64

# docker-compose -version
docker-compose version 1.7.1, build 0a9ab35


The install:



To install piwik, i use the file suggest here:
indiehosters/piwik



But i made some change because i would like:
- i would like to use a custom db so i configure an additional user and a password.
- i would like to use different containers of mysql by app so i change db to piwik_db (i am not sure it's a good practice)
- i would like to get a phpmyadmin access but i don't understand to make it work with the point 2. So i remove the config part.



So my docker compose fil looks like this:



piwik_db:
image: mysql
volumes:
- ./mysql/runtime:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: P@ssR00t
MYSQL_DATABASE: analytics
MYSQL_USER: admin
MYSQL_PASSWORD: P@ssUser
app:
image: piwik
links:
- piwik_db:mysql
volumes:
- ./config:/var/www/html/config
- ./ssmtp.conf:/etc/ssmtp/ssmtp.conf
- ./revaliases:/etc/ssmtp/revaliases
web:
image: nginx
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
- ./etc/letsencrypt:/etc/letsencrypt
links:
- app
volumes_from:
- app
ports:
- "8000:443"
cron:
image: piwik
links:
- piwik_db:mysql
volumes_from:
- app
entrypoint: |
bash -c 'bash -s <<EOF
trap "break;exit" SIGHUP SIGINT SIGTERM
while /bin/true; do
su -s "/bin/bash" -c "/usr/local/bin/php /var/www/html/console core:archive" www-data
sleep 3600
done
EOF'


The result:



When i run docker-compose up, it finish with an error:



ERROR: for web rpc error: code = 2 desc = "oci runtime error: could not synchronise with container process: not a directory"
Traceback (most recent call last):
File "<string>", line 3, in <module>
File "compose/cli/main.py", line 63, in main
AttributeError: 'ProjectError' object has no attribute 'msg'
docker-compose returned -1


When i test which containers was installed, i get



# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
f0388c2a89d3 piwik "bash -c 'bash -s <<E" About a minute ago Up 59 seconds 9000/tcp htdocs_cron_1
ef5d6c8c6e74 mysql "docker-entrypoint.sh" About a minute ago Up About a minute 3306/tcp htdocs_piwik_db_1


Why i get the error?
How to achieve the install?
How to make the app always running?



Thank you in advance for any help.




Ps: I still use my nginx config in site-available:



server 
listen 80;
listen [::]:80;

server_name piwik.domain.com;
# Redirige le HTTP vers le HTTPS #
return 301 https://$server_name$request_uri;

server setup/libs)
deny all;
return 404;


# Pass the PHP scripts to FastCGI server
location ~* .php$
# Prevent Zero-day exploit
try_files $uri =404;
#
fastcgi_split_path_info ^(.+?.php)(/.*)$;
if (!-f $document_root$fastcgi_script_name)
return 404;

fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include /etc/nginx/fastcgi_params;


# Redirect server error pages to the static page
error_page 403 /403.html;
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;

# Exclude from the logs to avoid bloating when it's not available
include drop.conf;











share|improve this question
















I try to switch all my app to docker.



The configuration:



I used nginx as server. With docker i will use it as proxy:



# nginx -v
nginx version: nginx/1.4.6 (Ubuntu)


Docker version:



# docker version
Client:
Version: 1.11.1
API version: 1.23
Go version: go1.5.4
Git commit: 5604cbe
Built: Tue Apr 26 23:30:23 2016
OS/Arch: linux/amd64

Server:
Version: 1.11.1
API version: 1.23
Go version: go1.5.4
Git commit: 5604cbe
Built: Tue Apr 26 23:30:23 2016
OS/Arch: linux/amd64

# docker-compose -version
docker-compose version 1.7.1, build 0a9ab35


The install:



To install piwik, i use the file suggest here:
indiehosters/piwik



But i made some change because i would like:
- i would like to use a custom db so i configure an additional user and a password.
- i would like to use different containers of mysql by app so i change db to piwik_db (i am not sure it's a good practice)
- i would like to get a phpmyadmin access but i don't understand to make it work with the point 2. So i remove the config part.



So my docker compose fil looks like this:



piwik_db:
image: mysql
volumes:
- ./mysql/runtime:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: P@ssR00t
MYSQL_DATABASE: analytics
MYSQL_USER: admin
MYSQL_PASSWORD: P@ssUser
app:
image: piwik
links:
- piwik_db:mysql
volumes:
- ./config:/var/www/html/config
- ./ssmtp.conf:/etc/ssmtp/ssmtp.conf
- ./revaliases:/etc/ssmtp/revaliases
web:
image: nginx
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
- ./etc/letsencrypt:/etc/letsencrypt
links:
- app
volumes_from:
- app
ports:
- "8000:443"
cron:
image: piwik
links:
- piwik_db:mysql
volumes_from:
- app
entrypoint: |
bash -c 'bash -s <<EOF
trap "break;exit" SIGHUP SIGINT SIGTERM
while /bin/true; do
su -s "/bin/bash" -c "/usr/local/bin/php /var/www/html/console core:archive" www-data
sleep 3600
done
EOF'


The result:



When i run docker-compose up, it finish with an error:



ERROR: for web rpc error: code = 2 desc = "oci runtime error: could not synchronise with container process: not a directory"
Traceback (most recent call last):
File "<string>", line 3, in <module>
File "compose/cli/main.py", line 63, in main
AttributeError: 'ProjectError' object has no attribute 'msg'
docker-compose returned -1


When i test which containers was installed, i get



# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
f0388c2a89d3 piwik "bash -c 'bash -s <<E" About a minute ago Up 59 seconds 9000/tcp htdocs_cron_1
ef5d6c8c6e74 mysql "docker-entrypoint.sh" About a minute ago Up About a minute 3306/tcp htdocs_piwik_db_1


Why i get the error?
How to achieve the install?
How to make the app always running?



Thank you in advance for any help.




Ps: I still use my nginx config in site-available:



server 
listen 80;
listen [::]:80;

server_name piwik.domain.com;
# Redirige le HTTP vers le HTTPS #
return 301 https://$server_name$request_uri;

server setup/libs)
deny all;
return 404;


# Pass the PHP scripts to FastCGI server
location ~* .php$
# Prevent Zero-day exploit
try_files $uri =404;
#
fastcgi_split_path_info ^(.+?.php)(/.*)$;
if (!-f $document_root$fastcgi_script_name)
return 404;

fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include /etc/nginx/fastcgi_params;


# Redirect server error pages to the static page
error_page 403 /403.html;
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;

# Exclude from the logs to avoid bloating when it's not available
include drop.conf;








docker piwik docker-compose






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited May 7 '16 at 13:58









PersianGulf

524620




524620










asked May 7 '16 at 9:25









jbojbo

164




164












  • Just hit this too - the actual exception is a docker-compose bug really, it's excepting when trying to log the 'real' error that would help us. For me this has started happening without updating docker, and without updating the yaml or anything, which is really odd. Did you find a fix/workaround?

    – OJFord
    May 9 '16 at 12:10











  • Not until now. Maybe i will try without docker-compose to test.

    – jbo
    May 11 '16 at 6:03

















  • Just hit this too - the actual exception is a docker-compose bug really, it's excepting when trying to log the 'real' error that would help us. For me this has started happening without updating docker, and without updating the yaml or anything, which is really odd. Did you find a fix/workaround?

    – OJFord
    May 9 '16 at 12:10











  • Not until now. Maybe i will try without docker-compose to test.

    – jbo
    May 11 '16 at 6:03
















Just hit this too - the actual exception is a docker-compose bug really, it's excepting when trying to log the 'real' error that would help us. For me this has started happening without updating docker, and without updating the yaml or anything, which is really odd. Did you find a fix/workaround?

– OJFord
May 9 '16 at 12:10





Just hit this too - the actual exception is a docker-compose bug really, it's excepting when trying to log the 'real' error that would help us. For me this has started happening without updating docker, and without updating the yaml or anything, which is really odd. Did you find a fix/workaround?

– OJFord
May 9 '16 at 12:10













Not until now. Maybe i will try without docker-compose to test.

– jbo
May 11 '16 at 6:03





Not until now. Maybe i will try without docker-compose to test.

– jbo
May 11 '16 at 6:03










1 Answer
1






active

oldest

votes


















0














In my case the problem was because in compose file it was trying to mount files and not folders, changing it solved the issue






share|improve this answer























    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "2"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f775387%2fdocker-compose-piwik-error-during-run%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    In my case the problem was because in compose file it was trying to mount files and not folders, changing it solved the issue






    share|improve this answer



























      0














      In my case the problem was because in compose file it was trying to mount files and not folders, changing it solved the issue






      share|improve this answer

























        0












        0








        0







        In my case the problem was because in compose file it was trying to mount files and not folders, changing it solved the issue






        share|improve this answer













        In my case the problem was because in compose file it was trying to mount files and not folders, changing it solved the issue







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jul 1 '16 at 14:09









        KatamoniaKatamonia

        1




        1



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Server Fault!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f775387%2fdocker-compose-piwik-error-during-run%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

            Club Baloncesto Breogán Índice Historia | Pavillón | Nome | O Breogán na cultura popular | Xogadores | Adestradores | Presidentes | Palmarés | Historial | Líderes | Notas | Véxase tamén | Menú de navegacióncbbreogan.galCadroGuía oficial da ACB 2009-10, páxina 201Guía oficial ACB 1992, páxina 183. Editorial DB.É de 6.500 espectadores sentados axeitándose á última normativa"Estudiantes Junior, entre as mellores canteiras"o orixinalHemeroteca El Mundo Deportivo, 16 setembro de 1970, páxina 12Historia do BreogánAlfredo Pérez, o último canoneiroHistoria C.B. BreogánHemeroteca de El Mundo DeportivoJimmy Wright, norteamericano do Breogán deixará Lugo por ameazas de morteResultados de Breogán en 1986-87Resultados de Breogán en 1990-91Ficha de Velimir Perasović en acb.comResultados de Breogán en 1994-95Breogán arrasa al Barça. "El Mundo Deportivo", 27 de setembro de 1999, páxina 58CB Breogán - FC BarcelonaA FEB invita a participar nunha nova Liga EuropeaCharlie Bell na prensa estatalMáximos anotadores 2005Tempada 2005-06 : Tódolos Xogadores da Xornada""Non quero pensar nunha man negra, mais pregúntome que está a pasar""o orixinalRaúl López, orgulloso dos xogadores, presume da boa saúde económica do BreogánJulio González confirma que cesa como presidente del BreogánHomenaxe a Lisardo GómezA tempada do rexurdimento celesteEntrevista a Lisardo GómezEl COB dinamita el Pazo para forzar el quinto (69-73)Cafés Candelas, patrocinador del CB Breogán"Suso Lázare, novo presidente do Breogán"o orixinalCafés Candelas Breogán firma el mayor triunfo de la historiaEl Breogán realizará 17 homenajes por su cincuenta aniversario"O Breogán honra ao seu fundador e primeiro presidente"o orixinalMiguel Giao recibiu a homenaxe do PazoHomenaxe aos primeiros gladiadores celestesO home que nos amosa como ver o Breo co corazónTita Franco será homenaxeada polos #50anosdeBreoJulio Vila recibirá unha homenaxe in memoriam polos #50anosdeBreo"O Breogán homenaxeará aos seus aboados máis veteráns"Pechada ovación a «Capi» Sanmartín e Ricardo «Corazón de González»Homenaxe por décadas de informaciónPaco García volve ao Pazo con motivo do 50 aniversario"Resultados y clasificaciones""O Cafés Candelas Breogán, campión da Copa Princesa""O Cafés Candelas Breogán, equipo ACB"C.B. Breogán"Proxecto social"o orixinal"Centros asociados"o orixinalFicha en imdb.comMario Camus trata la recuperación del amor en 'La vieja música', su última película"Páxina web oficial""Club Baloncesto Breogán""C. B. Breogán S.A.D."eehttp://www.fegaba.com

            Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070