For Ubuntu 20.04
First - Follow the guide for installing Portainer
Now once you are in Portainer, go to Stacks on the left side and hit 'Add a Stack'
You are going to name the stack filerun (All lowercase)
Pase in the following into the text editor, and hit 'Deploy the stack' at the bottom.
version: '2'
services:
db:
image: mariadb:10.1
environment:
MYSQL_ROOT_PASSWORD: filerun
MYSQL_USER: filerun
MYSQL_PASSWORD: filerun
MYSQL_DATABASE: filerun
volumes:
- /filerun/db:/var/lib/mysql
web:
image: filerun/filerun
environment:
FR_DB_HOST: db
FR_DB_PORT: 3306
FR_DB_NAME: filerun
FR_DB_USER: filerun
FR_DB_PASS: filerun
APACHE_RUN_USER: www-data
APACHE_RUN_USER_ID: 33
APACHE_RUN_GROUP: www-data
APACHE_RUN_GROUP_ID: 33
depends_on:
- db
links:
- db:db
ports:
- "80:80"
volumes:
- /filerun/html:/var/www/html
- /filerun/user-files:/user-files
When your docker container is running, connect to it on port 80 for the interface.
http://ipaddress:80
Once complete with the install, you are done! You can now follow the process within filerun to setup your account.
MAKE SURE YOU COPY YOUR USERNAME & PASSWORD THAT IS PROVIDED IN THE SETUP.