mirror of
https://gitlab.w-hs.de/an14051/backerup-website.git
synced 2026-07-27 17:35:29 +00:00
23 lines
521 B
YAML
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
|