-
Notifications
You must be signed in to change notification settings - Fork 49
Running on docker
Chris Colvard edited this page Feb 8, 2021
·
27 revisions
⚠️ This documentation is out of date. See the README instead.
- List all containers (only IDs)
docker ps -aq
- Stop all running containers.
docker stop $(docker ps -aq)
- Remove all containers.
docker rm $(docker ps -aq)
- Remove all images.
docker rmi $(docker images -q)
- Clear everything from
./tmp
. Otherwise this is going into the packaged image. - Run
docker-compose up --build
to pull/build all of the images. Note that hyku_app, hyku_web, hyku_workers, hyku_db_migrate, hyku_initialize_app all aliases to a single image, so we only need to pack one of them. e.g. hyku_app - Run
docker-compose down
to shut down once everything looks okay. - Export the images to a tar file and compress it. Don't do this in the project directory, or the next time you do this those images will get packaged in the new volumes.:
docker save -o hyku-images/hyku-all.tar hyku_app solr postgres redis zookeeper memcached cbeer/fcrepo4 ruby dockercloud/haproxy
gzip hyku-images/hyku-all.tar
docker load -i <path to image tar file>
If you're using an older computer you'll need to start a docker-machine. This installs a VM that can run docker inside it. It is much slower than using the Docker directly on your computer. Build the VM
docker-machine create --driver=virtualbox hyku
Connect the docker client to the VM
docker-machine env hyku
On mac this gives directions such as:
eval $(docker-machine env hyku)
- Download hyku (git or zip?)
- Modify
/etc/hosts
and add127.0.0.1 sample.localhost
(Look into setting base host variable) - Open browser and go to http://localhost:8080/ enter "sample" for the "Short name"
- Create an Image type object.
docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
eedf5f80cdf1 dockercloud/haproxy:1.5.3 "/sbin/tini -- doc..." 17 minutes ago Up 20 seconds 1936/tcp, 0.0.0.0:8080->80/tcp, 0.0.0.0:8443->443/tcp hyku_lb_1
5ff4b199d09f hyku_workers "bundle exec sidekiq" 17 minutes ago Up 21 seconds 3000/tcp hyku_workers_1
f098b85f866b redis:3 "docker-entrypoint..." 17 minutes ago Up 26 seconds 6379/tcp hyku_redis_1
1512454f858a solr "docker-entrypoint..." 5 days ago Up 23 seconds 8983/tcp hyku_solr_1
fcefa2663857 zookeeper "/docker-entrypoin..." 5 days ago Up 24 seconds 2181/tcp, 2888/tcp, 3888/tcp hyku_zoo3_1
fcfb362ac61d zookeeper "/docker-entrypoin..." 5 days ago Up 26 seconds 2181/tcp, 2888/tcp, 3888/tcp hyku_zoo2_1
2cf7a63be590 postgres "docker-entrypoint..." 5 days ago Up 26 seconds 5432/tcp hyku_db_1
4ec580198c7c cbeer/fcrepo4:4.7 "catalina.sh run" 5 days ago Up 26 seconds 8080/tcp hyku_fcrepo_1
7b5297e3903d zookeeper "/docker-entrypoin..." 5 days ago Up 25 seconds 2181/tcp, 2888/tcp, 3888/tcp hyku_zoo1_1
41650173eade memcached "docker-entrypoint..." 5 days ago Up 26 seconds 11211/tcp hyku_memcache_1
docker exec -it hyku_workers_1 bash
rails console
AccountElevator.switch!('sample.localhost')
Image.all