Successfully tagged app-registry-local.aldryn.net/agrowdevapi-test-37ae123fee35488aa7afaf88779408b0.2403de75863d452293464511e6f01f0d:rel-57c445067a40479da6af0e140792c18a
finished docker build
===== docker migrate release =====
[FATAL tini (6)] exec /app/migrate.sh failed: Permission denied

===== docker migrate release ===== [FATAL tini (8)] exec /app/migrate.sh failed: Permission denied
2.2k views Asked by Puneeth Reddy At
1
There are 1 answers
Related Questions in DJANGO
- Django Admin Panel and Sub URLs Returning 404 Error on Deployment
- How to return HTTP Get request response from models class in Django project
- Issue with Quantity Increment in Django E-commerce Cart
- Can't install Pipenv on Windows
- use dict from python in django html template and also in js
- 'pyodbc.Cursor' object has no attribute 'callproc', mssql with django
- Django socketio process
- Root path analogue in uWSGI as in Uvicorn
- Django - ModuleNotFoundError: No module named 'backend'
- Does Python being a loosely typed programming language make it less secure?
- sorl-thumbnail adds a background color when padding is used
- Can't connect to local postgresql server from my docker container
- Why ProductHunt api dont work with Python?
- why i have to put extra space in before write option selected because it show error if i don't ' option:selected'
- Django Arrayfield migration to cloud sql (Postgresql) not creating the column
Related Questions in DOCKER-COMPOSE
- Only the first SQL script gets executed inside Docker Postgres container
- Phoenix in a docker dev environment - generated code can't be saved from VSCode
- NextJS Docker build fails: fetch failed ECONNREFUSED
- Failed to connect to your instance after deploying mern app on aws ec2 instance when i try to access frontend
- Passing arguments to ENTRYPOINT causes the container to start and run indefinitely
- Why docker-compose volume binding didn't work during the build? Should I always COPY necessary for build files?
- docker-compose can't reset postgresql database
- mySQL through docker compose not available at localhost
- Problem running wagtail(CMS for django) and postgresql in Docker Compose
- Docker: keep python packages consistent
- How to create a docker composer environment where containers can communicate each other?
- Error: P1001: Can't reach database server at `db`:`5432` on github actions
- Springboot Kafka Consumer unable to maintain connect to kafka cluster brokers
- Nodejs application cannot communicate with postgresql (docker-compose)
- Issues with redirect when setting up Traefik Reverse Proxy in Docker
Related Questions in DIVIO
- How to install Google Recaptcha v3 with Django CMS and Aldryn Forms
- pip-reqs compile only resolves one github zip package from multiple
- Can TYPO3 run without local file storage for the typo3temp directory?
- Alternative for Aldryn-forms (Django-CMS)
- Setup Django-SHOP on Divio
- KeyError in pygit upon deploying on divio.com
- Failing Docker install of Jupyter on Django
- ===== docker migrate release ===== [FATAL tini (8)] exec /app/migrate.sh failed: Permission denied
- Importing existing blog posts into django-cms-blog
- Divio ImportError: cannot import name 's3boto'
- Divio App trouble to create project directory and clone repository
- Divio Windows App hangs at Preparing Logs
- Aldryn-Django Incompatibilities with Django Versions
- App Configure - Module, not configured correctly? Help Divio
- Setup of the Divio CMS Repositories
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Unfortunately because you are using an external Git repository, I cannot see exactly what is occurring. However, based on experience, this is the issue. The deployment fails because an error when it runs the migration commands:
[FATAL tini (6)] exec /app/migrate.sh failed: No such file or directory
You can see the same thing occurs locally if you run:
docker-compose run web ./migrate.shIt's still not very informative, but try this:followed by:
You will see:
And this is the clue. The first line of the ./migrate.sh file contains a ^Mcharacter, a Windows line ending. I think this may not be the only file affected - a git diff in your project seemed to show that many, many files were changed.
What editor are you using? You will need to resave that file, and possibly others. Please see https://help.github.com/en/github/using-git/configuring-git-to-handle-line-endings.