Stundenaufzeichnung/docker-compose.yml

19 lines
278 B
YAML
Raw Normal View History

2025-04-20 22:35:46 +02:00
name: Stundenaufzeichnung
volumes:
user-data:
services:
application:
2025-07-11 09:24:45 +02:00
build:
context: .
dockerfile: Dockerfile
2025-04-20 22:35:46 +02:00
ports:
- 3000:3001
2025-04-20 22:35:46 +02:00
volumes:
- type: volume
source: user-data
target: /app-data
2025-07-11 09:24:45 +02:00
restart: always
2025-04-20 22:35:46 +02:00