I’m following the installation instructions, but I’m getting an error when I try to initialize the database:
:~/ralph$ docker-compose run --rm web /root/init.sh
Starting ralph_redis_1 … done
Starting ralph_db_1 … done
Usage: /var/local/ralph/docker-entrypoint.sh {start|init|upgrade}
Can anyone help?
Did you have any luck with this? I have the same issues running any scripts inside the provision/
dir. With that said, I was able to populate the database by finding which container ran ralph,
[raub@vmhost2 ralph-ng]$ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS
PORTS NAMES
9b767ca5c73d allegro/ralph:latest "/var/local/ralph/doâ¦" 7 seconds ago Up 5 secons 0.0.0.0:32769->8000/tcp ralph-ng_web_1
[...]
And then populate it using ralphctl migrate directly:
raub@vmhost2 ralph-ng]$ docker exec -t 9b767ca5c73d ralphctl migrate
Right now I am having issues creating the admin user. Had no issues before.