diff options
Diffstat (limited to 'stacks/pkm')
| -rw-r--r-- | stacks/pkm/compose.yml | 12 | ||||
| -rw-r--r-- | stacks/pkm/env.template (renamed from stacks/pkm/.env.template) | 8 | ||||
| -rw-r--r-- | stacks/pkm/pkm.env.template (renamed from stacks/pkm/.pkm.env.template) | 1 |
3 files changed, 10 insertions, 11 deletions
diff --git a/stacks/pkm/compose.yml b/stacks/pkm/compose.yml index 68afaf0..52546cc 100644 --- a/stacks/pkm/compose.yml +++ b/stacks/pkm/compose.yml @@ -1,18 +1,18 @@ -name: ${_STACK_0} +name: ${STACK} networks: edge-net: - name: ${_NET_0} + name: ${EDGE_NET} external: true volumes: pkm-data: - name: ${_VOLUME_0} + name: ${PKM_DATA_VOLUME} external: true services: - pkm: - container_name: ${_CONTAINER_0} + pkm-test: + container_name: ${PKM_CONTAINER} image: ghcr.io/silverbulletmd/silverbullet restart: unless-stopped env_file: @@ -23,4 +23,4 @@ services: expose: - 3000 volumes: - - pkm-data:/space + - ${PKM_DATA_VOLUME}:/space diff --git a/stacks/pkm/.env.template b/stacks/pkm/env.template index b607b6b..cceb8db 100644 --- a/stacks/pkm/.env.template +++ b/stacks/pkm/env.template @@ -3,13 +3,13 @@ # Stack Compose Variables # Namespaces -_STACK_0= +STACK= # Containers -_CONTAINER_0= +PKM_CONTAINER= # Networks -_NET_0= +EDGE_NET= # Volumes -_VOLUME_0= +PIM_DATA_VOLUME= diff --git a/stacks/pkm/.pkm.env.template b/stacks/pkm/pkm.env.template index 9f373a5..c45f07a 100644 --- a/stacks/pkm/.pkm.env.template +++ b/stacks/pkm/pkm.env.template @@ -1,6 +1,5 @@ # # # Stack Runtime Variables -SB_USER= SB_NAME= SB_DESCRIPTION= |
