Add ihatemoney
This commit is contained in:
parent
a46782c960
commit
a0abddab87
1 changed files with 20 additions and 0 deletions
20
containers/ihatemoney.fish
Executable file
20
containers/ihatemoney.fish
Executable file
|
@ -0,0 +1,20 @@
|
|||
#!/usr/bin/env fish
|
||||
|
||||
set -l container_name ihatemoney
|
||||
set -l container_volumes_dir ~/volumes/$container_name
|
||||
|
||||
podman-default-create \
|
||||
$container_name \
|
||||
--network traefik \
|
||||
-v $container_volumes_dir/db:/volumes/db:Z \
|
||||
-e SQLALCHEMY_DATABASE_URI=sqlite:////volumes/db/ihatemoney.sqlite \
|
||||
-e SHOW_ADMIN_EMAIL=False \
|
||||
-e ACTIVATE_DEMO_PROJECT=False \
|
||||
-e ALLOW_PUBLIC_PROJECT_CREATION=False \
|
||||
-e ACTIVATE_ADMIN_DASHBOARD=False \
|
||||
-e BABEL_DEFAULT_TIMEZONE=Europe/Berlin \
|
||||
-e ENABLE_CAPTCHA=True \
|
||||
-e PORT=80 \
|
||||
--env-file $container_volumes_dir/.env \
|
||||
--label "io.containers.autoupdate=registry" \
|
||||
docker.io/ihatemoney/ihatemoney:latest
|
Loading…
Add table
Reference in a new issue