mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-22 19:01:02 +01:00
20 lines
419 B
YAML
20 lines
419 B
YAML
# docker-compose.yml
|
|
version: '3.8'
|
|
services:
|
|
profilarr:
|
|
image: santiagosayshey/profilarr:beta
|
|
container_name: profilarr
|
|
ports:
|
|
- 6868:6868
|
|
volumes:
|
|
- profilarr_data:/config
|
|
environment:
|
|
- TZ=Australia/Adelaide
|
|
env_file:
|
|
- .env
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
profilarr_data:
|
|
name: profilarr_data
|