10 lines
168 B
Bash
10 lines
168 B
Bash
#!/bin/sh
|
|
podman run \
|
|
--rm \
|
|
-d \
|
|
--name firefly-iii \
|
|
--env-file firefly.env \
|
|
-v firefly-iii:/var/www/html/storage \
|
|
-p 8080:8080 \
|
|
docker.io/fireflyiii/core
|