feat: add initial actual-server deployment
This commit is contained in:
commit
3042e7706b
1 changed files with 23 additions and 0 deletions
23
docker-compose.yml
Normal file
23
docker-compose.yml
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
services:
|
||||||
|
server:
|
||||||
|
image: docker.io/actualbudget/actual-server:25.2.1@sha256:3abc61d5f674a1043a93e448930142ce955b5e3938ee93e01f013c7d7d6f27d7
|
||||||
|
ports:
|
||||||
|
- '5006:5006'
|
||||||
|
# environment:
|
||||||
|
# - ACTUAL_OPENID_DISCOVERY_URL=
|
||||||
|
# - ACTUAL_OPENID_CLIENT_ID=
|
||||||
|
# - ACTUAL_OPENID_CLIENT_SECRET=
|
||||||
|
# - ACTUAL_OPENID_SERVER_HOSTNAME=
|
||||||
|
volumes:
|
||||||
|
- data:/data
|
||||||
|
healthcheck:
|
||||||
|
# Enable health check for the instance
|
||||||
|
test: ['CMD-SHELL', 'node src/scripts/health-check.js']
|
||||||
|
interval: 60s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 3
|
||||||
|
start_period: 20s
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
data:
|
Loading…
Add table
Add a link
Reference in a new issue