From 6738d91715209c33adb31403024a17594a07a74c Mon Sep 17 00:00:00 2001 From: theflyingfool Date: Sun, 21 Apr 2024 14:27:06 -0500 Subject: [PATCH] Update actual-server/docker-compose.yml Commented Environment section out Updated volume to local settings --- actual-server/docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actual-server/docker-compose.yml b/actual-server/docker-compose.yml index c986afb..565462e 100644 --- a/actual-server/docker-compose.yml +++ b/actual-server/docker-compose.yml @@ -6,7 +6,7 @@ services: # This line makes Actual available at port 5006 of the device you run the server on, # i.e. http://localhost:5006. You can change the first number to change the port, if you want. - '5006:5006' - environment: +# environment: # Uncomment any of the lines below to set configuration options. # - ACTUAL_HTTPS_KEY=/data/selfhost.key # - ACTUAL_HTTPS_CERT=/data/selfhost.crt @@ -19,5 +19,5 @@ services: volumes: # Change './actual-data' below to the path to the folder you want Actual to store its data in on your server. # '/data' is the path Actual will look for its files in by default, so leave that as-is. - - ./actual-data:/data + - /home/nick/docker/actual-data:/data restart: unless-stopped \ No newline at end of file