Docker with telegraf setup for Synology. Needs external Influx and Grafana.
2.2K
This repository holds the source code that's used to build FOSSBilling's docker images.
This is an example of a docker-compose.yml file. You should change the values to suit your needs:
version: "3.9"
services:
fossbilling:
image: fossbilling/fossbilling
restart: always
ports:
- 80:80
volumes:
- fossbilling:/var/www/html
mysql:
image: mysql:8.0
restart: always
environment:
MYSQL_DATABASE: exampledb
MYSQL_USER: exampleuser
MYSQL_PASSWORD: examplepass
MYSQL_RANDOM_ROOT_PASSWORD: '1'
volumes:
- mysql:/var/lib/mysql
volumes:
fossbilling:
mysql:
Once the image is running, you can access access it via your web-browser and follow the on-screen steps to install FOSSBilling.
The database hostname should be mysql if you followed this example.
crontab -e*/5 * * * * docker exec {name of container} php /var/www/html/cron.phpClone this repo
docker build -t fossbilling/fossbilling:latest -t fossbilling/fossbilling:latest .
Currently only the latest tag is available.
Don't forget the . at the end of the command.
fossbilling/fossbilling is the name of the image. You can change it to whatever you want.
This repository includes open source software and is released under the Apache v2.0 license. See LICENSE for the full license terms.
Content type
Image
Digest
sha256:bee3618ba…
Size
269.8 MB
Last updated
almost 3 years ago
docker pull gibby/fossbilling