/bin/sh: 1: Syntax error: Unterminated quoted string - docker #1147
Replies: 5 comments 9 replies
-
Hi, please tell us exactly what command you try to run, and what your setup looks like (container engine, etc.) |
Beta Was this translation helpful? Give feedback.
-
Running on docker AMD based system.
That's really it.
…On Wed, Mar 22, 2023 at 4:47 PM Georg Gadinger ***@***.***> wrote:
Hi, please tell us exactly what command you try to run, and what your
setup looks like (container engine, etc.)
—
Reply to this email directly, view it on GitHub
<#1147 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/APESZJWZCWTCAKWKOFVXURLW5MUIVANCNFSM6AAAAAAWEBFIGE>
.
You are receiving this because you authored the thread.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
-
If it helps' it's ubuntu 22.04 server edition.
…On Wed, Mar 22, 2023 at 5:32 PM Owen Bonneville ***@***.***> wrote:
Running on docker AMD based system.
That's really it.
On Wed, Mar 22, 2023 at 4:47 PM Georg Gadinger ***@***.***>
wrote:
> Hi, please tell us exactly what command you try to run, and what your
> setup looks like (container engine, etc.)
>
> —
> Reply to this email directly, view it on GitHub
> <#1147 (comment)>,
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/APESZJWZCWTCAKWKOFVXURLW5MUIVANCNFSM6AAAAAAWEBFIGE>
> .
> You are receiving this because you authored the thread.Message ID:
> ***@***.***
> com>
>
|
Beta Was this translation helpful? Give feedback.
-
Unfortunately, that doesn't help me at all. How do you try to run it? |
Beta Was this translation helpful? Give feedback.
-
We don't have documentation for the production Docker setup yet, since we don't use that ourselves even. The best bet for a quick startup is following parts of the setup guide in the wiki and looking at #1042 and the second command to run the container with the appropriate files mounted. ( Might move the goal ahead to make the In the meantime: The compose file can also be adjusted to run the production image, should be something along the lines of this for the web:
image: ghcr.io/retrospring/retrospring:main
command: bundle exec sidekiq
depends_on:
- postgres
- redis
environment:
- SECRET_KEY_BASE=seeeecret
- RAILS_LOG_TO_STDOUT=true
- SPROCKETS_CACHE=/cache
- DATABASE_URL=postgres://postgres:justask@postgres/justask_development?pool=25
- REDIS_URL=redis://redis:6379
volumes:
- ./config/database.yml:/opt/retrospring/app/config/database.yml
- ./config/sidekiq.yml:/opt/retrospring/app/config/sidekiq.yml
- ./config/justask.yml:/opt/retrospring/app/config/justask.yml
- ./config/initializers/devise.rb:/opt/retrospring/app/config/initializers/devise.rb
- ./:/app
- cache:/cache
ports:
- 3000:3000 Things to adjust as well:
No guarantees this works, I wrote this up blindly on the fly right now |
Beta Was this translation helpful? Give feedback.
-
Hi, whenever I attempt to deploy retrospring via docker, I get this message. This is from github directly, or the docker image.
Beta Was this translation helpful? Give feedback.
All reactions