Skip to content
This repository has been archived by the owner on Jun 16, 2021. It is now read-only.

Latest commit

 

History

History
36 lines (27 loc) · 1.04 KB

docker.md

File metadata and controls

36 lines (27 loc) · 1.04 KB
author(s)
Hüseyin Tekinaslan (@huseyin)

Docker

Docker Compose

Nokul'u kendi bilgisayarınızda çalıştırmak için Docker Compose uygulamasını kullanabilirsiniz. Docker Compose'u bilgisayarınızda çalıştırmak için Docker ve Docker Compose'u başarıyla bilgisayarınıza kurmanız gerekmektedir.

docker-compose'u kullanarak uygulamayı ayağa kaldırmadan önce proje kökünde bulunan .env dosyası içindeki değişkenkeri doldurmanız gerekmektedir.

.env dosyası içeriği:

RAILS_ENV=development
NODE_ENV=development
RAILS_MASTER_KEY=xxxxxxxx
docker-compose build web
docker-compose run web sh -c "bundle install -j4 --path /app/vendor/bundle && yarn install"
docker-compose run web rails db:create db:structure:load db:seed
docker-compose up web

http://localhost:3000 adresinden uygulamaya erişebilirsiniz.