Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fleimgruber/55edca8b2d318cccf3dc57b599df79e3 to your computer and use it in GitHub Desktop.
Save fleimgruber/55edca8b2d318cccf3dc57b599df79e3 to your computer and use it in GitHub Desktop.
docker-reviewboard: make run
docker run -d --name rb-postgres -e POSTGRES_USER=reviewboard postgres || true
76fe688fbb8fdf737e915a86e9546756ac619bc3008664887cf19bae6c36f20d
docker run --name rb-memcached -d -p 11211 sylvainlasnier/memcached || true
9dfdca1680be20eb73ac39d08a658011490f901c0080e6192c9abfe777697c29
docker exec rb-postgres sh -c 'while ! psql -U postgres -c "select 1" > /dev/null 2>&1; do echo "Echo waiting for postgres to come up..."; sleep 1; done'
Echo waiting for postgres to come up...
Echo waiting for postgres to come up...
Echo waiting for postgres to come up...
docker run -v /root/.ssh -v /media --name rb-data busybox true || true
docker run -it --link rb-postgres:pg --link rb-memcached:memcached --volumes-from rb-data -p 8000:8000 "ikatson/reviewboard"
/start.sh: line 36: rb-site: command not found
[uWSGI] getting INI configuration from /uwsgi.ini
[uwsgi-static] added mapping for /static => /var/www/reviewboard/htdocs/static
[uwsgi-static] added mapping for /media => /var/www/reviewboard/htdocs/media
[uwsgi-static] added mapping for /errordocs => /var/www/reviewboard/htdocs/errordocs
*** Starting uWSGI 2.0.14 (64bit) on [Mon Apr 3 12:27:52 2017] ***
compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-11) on 13 January 2017 23:06:53
os: Linux-3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt25-2 (2016-04-08)
nodename: bb56382be6f4
machine: x86_64
clock source: unix
pcre jit disabled
detected number of CPU cores: 1
current working directory: /
detected binary path: /usr/sbin/uwsgi
uWSGI running as root, you can use --uid/--gid/--chroot options
*** WARNING: you are running uWSGI as root !!! (use the --uid flag) ***
your processes number limit is 1048576
your memory page size is 4096 bytes
detected max file descriptor number: 1048576
!!! no /etc/mime.types file found !!!
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uWSGI http bound on :8000 fd 4
uwsgi socket 0 bound to TCP address 127.0.0.1:44397 (port auto-assigned) fd 3
Python version: 2.7.5 (default, Nov 6 2016, 00:28:07) [GCC 4.8.5 20150623 (Red Hat 4.8.5-11)]
Python main interpreter initialized at 0x233a140
python threads support enabled
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145536 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
failed to open python file /var/www/reviewboard/conf/settings_local.py
Makefile:12: recipe for target 'run' failed
make: *** [run] Error 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment