diff options
| author | RATDAD <lambda@disroot.org> | 2025-12-17 19:53:38 -0500 |
|---|---|---|
| committer | RATDAD <lambda@disroot.org> | 2025-12-17 19:53:38 -0500 |
| commit | a50e5d21b0430a734929bc17017cc8c394b25524 (patch) | |
| tree | 8a61bac5b36ca8725f3fdf64d30073b081c7d643 /stacks/dav/compose.yml | |
| download | rds-platform-a50e5d21b0430a734929bc17017cc8c394b25524.tar.gz rds-platform-a50e5d21b0430a734929bc17017cc8c394b25524.tar.bz2 rds-platform-a50e5d21b0430a734929bc17017cc8c394b25524.zip | |
Initial Commit
Diffstat (limited to 'stacks/dav/compose.yml')
| -rw-r--r-- | stacks/dav/compose.yml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/stacks/dav/compose.yml b/stacks/dav/compose.yml new file mode 100644 index 0000000..7e59600 --- /dev/null +++ b/stacks/dav/compose.yml @@ -0,0 +1,39 @@ +name: ${_STACK} + +networks: + net: + name: ${_NET} + external: true + intra: + +volumes: + data: + name: ${_DB_DATA_VOLUME} + external: true + +services: + db: + container_name: ${_DB_CONTAINER} # Required for now. + image: postgres:16-alpine + networks: + - intra + env_file: + - .env + - .davis.env + - .db.env + volumes: + - ${data:-.database/}:/var/lib/postgresql/data + + davis: + container_name: ${_CONTAINER} + image: ghcr.io/tchapi/davis-standalone:latest + env_file: + - .davis.env + - .env + networks: + - net + - intra + expose: + - 9000 + depends_on: + - db |
