34 lines
1.1 KiB
YAML
34 lines
1.1 KiB
YAML
name: plant-it
|
|
services:
|
|
server:
|
|
image: msdeluise/plant-it-server:latest
|
|
env_file: server.env
|
|
depends_on:
|
|
- db
|
|
volumes:
|
|
- "/home/soenke/docker-data/plantit/upload-dir:/upload-dir"
|
|
ports:
|
|
- "8632:8080"
|
|
- "3632:3000"
|
|
labels:
|
|
kuma.tools.tag.name: 'Tools'
|
|
kuma.tools.tag.color: '#FF9900'
|
|
kuma.homelab.tag.name: 'Organization'
|
|
kuma.homelab.tag.color: '#FF9955'
|
|
kuma.organization.tag.name: 'Organization'
|
|
kuma.organization.tag.color: '#FF99AA'
|
|
kuma.plantit.http.name: 'plantit'
|
|
kuma.plantit.http.url: 'https://plantit.domr.ovh/'
|
|
kuma.plantit.http.tag_names: '[{"name": "tools", "value": "" }, {"name": "organization", "value": "" }]'
|
|
kuma.plantitapi.http.name: 'plantit api'
|
|
kuma.plantitapi.http.url: 'https://api.plantit.domr.ovh/'
|
|
kuma.plantitapi.http.tag_names: '[{"name": "tools", "value": "" }, {"name": "homelab", "value": "" }]'
|
|
|
|
db:
|
|
image: mysql:8.0
|
|
restart: always
|
|
env_file: server.env
|
|
volumes:
|
|
- "/home/soenke/docker-data/plantit/db:/var/lib/mysql"
|
|
|