You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
810 B
34 lines
810 B
version: '2'
|
|
|
|
services:
|
|
db:
|
|
image: mariadb:10.1
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: your_mysql_root_password
|
|
MYSQL_USER: your_filerun_username
|
|
MYSQL_PASSWORD: your_filerun_password
|
|
MYSQL_DATABASE: your_filerun_database
|
|
volumes:
|
|
- /filerun/db:/var/lib/mysql
|
|
|
|
web:
|
|
image: filerun/filerun:8.1
|
|
environment:
|
|
FR_DB_HOST: db
|
|
FR_DB_PORT: 3306
|
|
FR_DB_NAME: your_filerun_database
|
|
FR_DB_USER: your_filerun_username
|
|
FR_DB_PASS: your_filerun_password
|
|
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 |