mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 12:43:09 -05:00
Update all Docker Hub references to new `actualbudget` organization from `jlongster` personal account. We're officially an org now! A bit of markdown/yaml auto-formatting snuck in, too. Closes https://github.com/actualbudget/actual/issues/364 Corresponding update for the docs site in https://github.com/actualbudget/docs/pull/144 Simultaneous to merging, we need to update our `DOCKER_HUB_*` GitHub secrets in this repo. --------- Co-authored-by: Jed Fox <git@jedfox.com>
21 lines
957 B
YAML
21 lines
957 B
YAML
version: '3'
|
|
services:
|
|
actual_server:
|
|
image: 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.
|
|
- '5006:5006'
|
|
environment:
|
|
# Uncomment any of the lines below to set configuration options.
|
|
# - ACTUAL_HTTPS_KEY=/data/selfhost.key
|
|
# - ACTUAL_HTTPS_CERT=/data/selfhost.crt
|
|
# - ACTUAL_NORDIGEN_SECRET_ID=xxxx
|
|
# - ACTUAL_NORDIGEN_SECRET_KEY=xxxx
|
|
# See all options and more details at https://actualbudget.github.io/docs/Installing/Configuration
|
|
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
|
|
restart: unless-stopped
|