traefik/actual/docker-compose.yml

13 lines
611 B
YAML
Raw Normal View History

2024-06-03 06:14:11 +00:00
version: '3'
services:
actual_server:
image: docker.io/actualbudget/actual-server:latest
ports:
# 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.
2024-06-03 06:16:21 +00:00
- '8085:5006'
2024-06-03 06:14:11 +00:00
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.
- /volume1/docker/actual/data:/data
restart: unless-stopped