diff options
| author | RATDAD <lambda@disroot.org> | 2026-02-15 16:58:38 -0500 |
|---|---|---|
| committer | RATDAD <lambda@disroot.org> | 2026-02-15 16:58:38 -0500 |
| commit | a3f074fc780747f0cedfb8184502fc8e8834457a (patch) | |
| tree | e9a48d86c30f3d7086d2b9b6669e67ba8e36b45d /stacks/pkm | |
| parent | 156f159e6c2b8c5fc60ab343ac68b6349f13bb90 (diff) | |
| download | rd-cloud-a3f074fc780747f0cedfb8184502fc8e8834457a.tar.gz rd-cloud-a3f074fc780747f0cedfb8184502fc8e8834457a.tar.bz2 rd-cloud-a3f074fc780747f0cedfb8184502fc8e8834457a.zip | |
Updated Taskchampion Sync Server and Silverbullet container templates
Diffstat (limited to 'stacks/pkm')
| -rw-r--r-- | stacks/pkm/.env.template | 15 | ||||
| -rw-r--r-- | stacks/pkm/.gitignore | 3 | ||||
| -rw-r--r-- | stacks/pkm/.pkm.env.template | 6 | ||||
| -rw-r--r-- | stacks/pkm/compose.yml | 26 |
4 files changed, 50 insertions, 0 deletions
diff --git a/stacks/pkm/.env.template b/stacks/pkm/.env.template new file mode 100644 index 0000000..b607b6b --- /dev/null +++ b/stacks/pkm/.env.template @@ -0,0 +1,15 @@ +# +# +# Stack Compose Variables + +# Namespaces +_STACK_0= + +# Containers +_CONTAINER_0= + +# Networks +_NET_0= + +# Volumes +_VOLUME_0= diff --git a/stacks/pkm/.gitignore b/stacks/pkm/.gitignore new file mode 100644 index 0000000..360f7cc --- /dev/null +++ b/stacks/pkm/.gitignore @@ -0,0 +1,3 @@ +*.env +space/ +compose.test.yml diff --git a/stacks/pkm/.pkm.env.template b/stacks/pkm/.pkm.env.template new file mode 100644 index 0000000..9f373a5 --- /dev/null +++ b/stacks/pkm/.pkm.env.template @@ -0,0 +1,6 @@ +# +# +# Stack Runtime Variables +SB_USER= +SB_NAME= +SB_DESCRIPTION= diff --git a/stacks/pkm/compose.yml b/stacks/pkm/compose.yml new file mode 100644 index 0000000..68afaf0 --- /dev/null +++ b/stacks/pkm/compose.yml @@ -0,0 +1,26 @@ +name: ${_STACK_0} + +networks: + edge-net: + name: ${_NET_0} + external: true + +volumes: + pkm-data: + name: ${_VOLUME_0} + external: true + +services: + pkm: + container_name: ${_CONTAINER_0} + image: ghcr.io/silverbulletmd/silverbullet + restart: unless-stopped + env_file: + - .run.env + - .env + networks: + - edge-net + expose: + - 3000 + volumes: + - pkm-data:/space |
