Files
backerup-website/docker/docker-compose.yml
T

23 lines
521 B
YAML

services:
backerup-website:
build:
context: ..
dockerfile: docker/Dockerfile
image: backerup-website:latest
container_name: backerup-website
restart: unless-stopped
ports:
- "3000:3000"
volumes:
- backerup_data:/app/data
environment:
- NODE_ENV=production
- NEXT_TELEMETRY_DISABLED=1
- AUTH_SECRET=tSdfJ57w1IyCpkZijj4UEytTmqk+PWRr45R9BC077cw=
- ADMIN_USERNAME=admin
- ADMIN_PASSWORD=admin333
volumes:
backerup_data:
driver: local