mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-22 10:51:02 +01:00
22 lines
462 B
YAML
22 lines
462 B
YAML
# docker-compose.prod.yml
|
|
version: '3.8'
|
|
services:
|
|
backend:
|
|
build:
|
|
context: .
|
|
dockerfile: backend/Dockerfile.prod
|
|
ports:
|
|
- '5000:5000'
|
|
volumes:
|
|
- profilarr_data:/config
|
|
environment:
|
|
- FLASK_ENV=production
|
|
- TZ=Australia/Adelaide
|
|
env_file:
|
|
- .env.prod
|
|
restart: always
|
|
|
|
volumes:
|
|
profilarr_data:
|
|
name: profilarr_data
|