infra/ansible/roles/services/templates/compose.yaml
shockrah 3c6bc90feb
Some checks failed
Ansible Linting / ansible-lint (push) Failing after 5s
Secops Linting and Safety Checks / checkov-scan-s3 (push) Failing after 15s
health container and filebrowser container now active
Configuration needed at this point however
2025-04-16 20:28:48 -07:00

27 lines
552 B
YAML

services:
health:
container_name: health
image: nginx:latest
ports:
- "{{ health_port }}:80"
filebrowser:
container_name: filebrowser
image: filebrowser/filebrowser
volumes:
- filebrowser-data:/srv
- filebrowser-db:/database.db
environment:
PUID: "{{ puid }}"
PGID: "{{ pgid }}"
volumes:
filebrowser-data:
name: vol-filebrowser-data
driver: local
filebrowser-db:
name: vol-filebrowser-db
driver: local
filebrowser-cfg:
name: vol-filebrowser-cfg
driver: local