mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	chore: Remove invalid quotes in Dockerfile instructions (#1431)
Co-authored-by: hiaselhans <simon.klemenc@gmail.com>
This commit is contained in:
		@@ -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.
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user