mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-22 10:51:02 +01:00
feat: add production Dockerfile and docker-compose configuration for backend setup
This commit is contained in:
21
docker-compose.prod.yml
Normal file
21
docker-compose.prod.yml
Normal file
@@ -0,0 +1,21 @@
|
||||
# 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
|
||||
Reference in New Issue
Block a user