Skip to content
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

created planka template #467

Merged
merged 9 commits into from
Feb 26, 2024
27 changes: 27 additions & 0 deletions templates/planka.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?xml version="1.0"?>
<Container version="2">
<Name>planka</Name>
nwithan8 marked this conversation as resolved.
Show resolved Hide resolved
<Repository>ghcr.io/plankanban/planka</Repository>
<Registry>https://github.com/plankanban/planka/pkgs/container/planka</Registry>
<Network>bridge</Network>
<Shell>sh</Shell>
<Privileged>false</Privileged>
<Support>https://github.com/plankanban/planka/issues</Support>
<Project>https://planka.app/</Project>
<Requires>Postgres</Requires>
nwithan8 marked this conversation as resolved.
Show resolved Hide resolved
<PostArgs>bash -c
"for i in `seq 1 30`; do
./start.sh &&
s=$$? && break || s=$$?;
echo \"Tried $$i times. Waiting 5 seconds...\";
sleep 5;
done; (exit $$s)"</PostArgs>
<Overview>The realtime kanban board for workgroups built with React and Redux.</Overview>
<Config Name="User Avatars" Target="/app/public/user-avatars" Default="/mnt/user/appdata/planka/user-avatars" Mode="rw" Description="User Avatar Storage Location" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/planka/user-avatars</Config>
<Config Name="Project Background Images" Target="/app/public/project-background-images" Default="/mnt/user/appdata/planka/project-background-images" Mode="rw" Description="Background Image Location" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/planka/project-background-images</Config>
<Config Name="Attachments" Target="/app/private/attachments" Default="/mnt/user/appdata/planka/attachments" Mode="rw" Description="Attachment Storage Location" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/planka/attachments</Config>
<Config Name="WebUI Port" Target="3000" Default="1337" Mode="" Description="Web UI Port" Type="Port" Display="always" Required="true" Mask="false">1337</Config>
bravohotel91 marked this conversation as resolved.
Show resolved Hide resolved
<Config Name="Base URL" Target="BASE_URL" Default="http://localhost:3000" Mode="" Description="Base URL of Planka" Type="Variable" Display="always" Required="true" Mask="false">http://localhost:3000</Config>
<Config Name="Database URL" Target="DATABASE_URL" Default="postgresql://postgres@postgres/planka" Mode="" Description="Postgres Database Auth" Type="Variable" Display="always" Required="true" Mask="false">postgresql://postgres@postgres/planka</Config>
<Config Name="Secret Key" Target="SECRET_KEY" Default="notsecretkey" Mode="" Description="Secret Key" Type="Variable" Display="always" Required="true" Mask="false">notsecretkey</Config>
bravohotel91 marked this conversation as resolved.
Show resolved Hide resolved
</Container>