Help request to set up Particify from docker

Quick installation notes for Particify-docker from the Particify docs.

# install requirements
yum -y install git nethserver-docker

# enable portainer
config setprop portainer status enabled
signal-event nethserver-docker-update

# get docker-compose and set permissions
sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose

# Clone the particify docker repo
git clone https://gitlab.com/particify/dev/foss/docker-orchestration.git

# Set env to production and start the containers
cd docker-orchestration/
./set-env.sh prod

# I used ports 8001 and 8002 to not conflict with local apache2.
PORT=8001 HTTPS_PORT=8002 docker-compose up -d

Join the “particify_arsnova-proxy_1” container to the aqua network (see this thread for screenshots) and use a named reverse proxy to http://localhost:8001.

3 Likes