chore: Remove invalid quotes in Dockerfile instructions (#1431)

Co-authored-by: hiaselhans <simon.klemenc@gmail.com>
This commit is contained in:
simon klemenc
2020-11-22 17:20:56 +01:00
committed by GitHub
parent be2d3ea124
commit fcf91f60fb

View File

@@ -12,8 +12,8 @@ We publish our base images to docker hub. Build your web/worker images from thes
``` ```
FROM chatwoot/chatwoot:latest FROM chatwoot/chatwoot:latest
RUN chmod +x docker/entrypoints/rails.sh RUN chmod +x docker/entrypoints/rails.sh
ENTRYPOINT [\"docker/entrypoints/rails.sh\"] ENTRYPOINT ["docker/entrypoints/rails.sh"]
CMD bundle exec bundle exec rails s -b 0.0.0.0 -p 3000" CMD bundle exec bundle exec rails s -b 0.0.0.0 -p 3000
``` ```
### worker ### worker
@@ -21,8 +21,8 @@ CMD bundle exec bundle exec rails s -b 0.0.0.0 -p 3000"
``` ```
FROM chatwoot/chatwoot:latest FROM chatwoot/chatwoot:latest
RUN chmod +x docker/entrypoints/rails.sh RUN chmod +x docker/entrypoints/rails.sh
ENTRYPOINT [\"docker/entrypoints/rails.sh\"] ENTRYPOINT ["docker/entrypoints/rails.sh"]
CMD bundle exec sidekiq -C config/sidekiq.yml" CMD bundle exec sidekiq -C config/sidekiq.yml
``` ```
The app servers will available on port `3000`. Ensure the images are connected to the same database and Redis servers. Provide the configuration for these services via environment variables. The app servers will available on port `3000`. Ensure the images are connected to the same database and Redis servers. Provide the configuration for these services via environment variables.