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 - Тарых жана география Навигация менюсу

            Bruxelas-Capital Índice Historia | Composición | Situación lingüística | Clima | Cidades irmandadas | Notas | Véxase tamén | Menú de navegacióneO uso das linguas en Bruxelas e a situación do neerlandés"Rexión de Bruxelas Capital"o orixinalSitio da rexiónPáxina de Bruselas no sitio da Oficina de Promoción Turística de Valonia e BruxelasMapa Interactivo da Rexión de Bruxelas-CapitaleeWorldCat332144929079854441105155190212ID28008674080552-90000 0001 0666 3698n94104302ID540940339365017018237

            What should I write in an apology letter, since I have decided not to join a company after accepting an offer letterShould I keep looking after accepting a job offer?What should I do when I've been verbally told I would get an offer letter, but still haven't gotten one after 4 weeks?Do I accept an offer from a company that I am not likely to join?New job hasn't confirmed starting date and I want to give current employer as much notice as possibleHow should I address my manager in my resignation letter?HR delayed background verification, now jobless as resignedNo email communication after accepting a formal written offer. How should I phrase the call?What should I do if after receiving a verbal offer letter I am informed that my written job offer is put on hold due to some internal issues?Should I inform the current employer that I am about to resign within 1-2 weeks since I have signed the offer letter and waiting for visa?What company will do, if I send their offer letter to another company