-
Notifications
You must be signed in to change notification settings - Fork 0
Stacy/compose 1 #32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Stacylia
wants to merge
17
commits into
next
Choose a base branch
from
stacy/compose-1
base: next
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+20
−0
Open
Stacy/compose 1 #32
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
c2ac40b
Create stacy.yaml
Stacylia 8f2da71
Update stacy.yaml
Stacylia 3b8f964
Update stacy.yaml
ShadowArcanist 24464ec
Update stacy.yaml
Stacylia b2e0f7b
Update stacy.yaml
Stacylia ea415ae
Update stacy.yaml
Stacylia 2423f41
Update stacy.yaml
Stacylia b630811
Update stacy.yaml
ShadowArcanist fa76be8
Update stacy.yaml
ShadowArcanist b255a7e
Update templates/compose/stacy.yaml
ShadowArcanist 3932ccb
Update stacy.yaml
ShadowArcanist d7550b3
Update stacy.yaml
ShadowArcanist 0d47891
Update stacy.yaml
ShadowArcanist f566253
Update service-templates-latest.json
ShadowArcanist 85534be
Update templates/service-templates-latest.json
ShadowArcanist 73a2839
Update templates/compose/stacy.yaml
ShadowArcanist 6b3517c
Update stacy.yaml
ShadowArcanist File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| # documentation: https://actualbudget.org/docs/install/docker | ||
| # slogan: A local-first personal finance app. | ||
| # category: finance | ||
| # tags: budgeting,actual,finance,budget,money,expenses,income | ||
| # logo: svgs/actualbudget.png | ||
| # port: 5006 | ||
|
|
||
| services: | ||
| actual_server: | ||
| image: actualbudget/actual-server:latest | ||
| environment: | ||
| - SERVICE_FQDN_ACTUAL_5006 | ||
|
shadowreviewer[bot] marked this conversation as resolved.
|
||
| - ACTUAL_LOGIN_METHOD=password | ||
| volumes: | ||
| - actual_data:/datas | ||
| healthcheck: | ||
| test: ["CMD-SHELL", "bash -c ':> /dev/tcp/127.0.0.1/5006' || exit 1"] | ||
| interval: 5s | ||
| timeout: 20s | ||
| retries: 3 | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please pin this image to a specific version.
actualbudget/actual-server:latestuses a floating tag, which might break our template if upstream image have breaking changes. Use a fixed version tag (image:1.2.3) or a digest (image@sha256:…).