From 7c3945a34e70bfafb8912c7dabb57c54c9a0645b Mon Sep 17 00:00:00 2001 From: Natan Keddem Date: Tue, 30 Apr 2024 20:00:42 -0400 Subject: [PATCH] fixed compose --- docker-compose.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 3323cd4..7ec4828 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,14 +1,15 @@ version: "3.8" services: - autopve: - image: autopve:latest + bale: + image: ghcr.io/natankeddem/autopve:latest ports: - 8080:8080 - # volumes: - # - ~/path/to/data:/app/data - # - ~/path/to/logs:/app/logs + volumes: + - /etc/localtime:/etc/localtime:ro + - ~/path/to/data:/app/data + - ~/path/to/logs:/app/logs environment: - PUID=1000 - PGID=1000 - - VERBOSE_LOGGING=TRUE # Optional: Will enable additional logging. Warning logs may contain passwords in plaintext. Sanitize before sharing. \ No newline at end of file + - VERBOSE_LOGGING=TRUE # Optional \ No newline at end of file