root@webinar.corp13.un:~# cd /root/greenlight-v3
root@webinar.corp13.un:~/greenlight-v3# cat .env
...
OPENID_CONNECT_CLIENT_ID=any-client
OPENID_CONNECT_CLIENT_SECRET=anystring
OPENID_CONNECT_ISSUER=https://keycloak.corp13.un/realms/corp13
OPENID_CONNECT_REDIRECT=https://webinar.corp13.un/
...
root@webinar.corp13.un:~/greenlight-v3# docker-compose up -d
root@webinar:~# docker exec -it greenlight-v3 bundle exec rake user:set_admin_role['user1@corp13.un']
root@webinar:~# docker exec -it greenlight-v3 bundle exec rails c
greenlight(prod)>
User.all.pluck(:name, :email)
User.find_by(email: 'user2@corp13.un')
User.find_by(email: "user2@corp13.un").destroy
root@webinar:~# docker exec -it greenlight-v3 bash -c "echo User.all.pluck\(:name, :email\) | bundle exec rails c"