Skip to content

Instantly share code, notes, and snippets.

@SashaMkrt
Last active January 17, 2024 19:22
Show Gist options
  • Save SashaMkrt/2826ca12047ee330eea901ce5b4ab4d1 to your computer and use it in GitHub Desktop.
Save SashaMkrt/2826ca12047ee330eea901ce5b4ab4d1 to your computer and use it in GitHub Desktop.
Installing allegro/ralph version 3 on Alpine Linux (docker environment) from scratch
  1. Download and boot from ISO (Alpine Linux Virt)
  2. login 'root'
  3. run setup-alpine
  4. answer questions
  5. enable 'testing' and 'community' repos in /etc/apk/repositories
  6. run apk update
  7. run apk add docker
  8. run rc-update add docker boot # add docker service to system start-up
  9. run service docker start # manually start docker service
  10. run apk add docker-compose
  11. run wget https://raw.githubusercontent.com/allegro/ralph/ng/docker/docker-compose.yml
  12. edit, if needed
  13. run docker-compose run web-init # first ralph initialization
  14. run docker-compose up -d
  15. open http://your-ip (default login/password: ralph/ralph)

Used 2.7Gb on HDD + SWAP in my env

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment