hotio/petio

GitHub
docker.io
/ ghcr.io
/ quay.io
Petio
00
Starting the container¶
docker run --rm \
--name petio \
-p 7777:7777 \
-e PUID=1000 \
-e PGID=1000 \
-e UMASK=002 \
-e TZ="Etc/UTC" \
-v /<host_folder_config>:/config \
cr.hotio.dev/hotio/petio
docker run --rm \
--name mongo \
--user 1000:1000 \
-v /<host_folder_configdb>:/data/configdb \
-v /<host_folder_db>:/data/db \
mongo
version: "3.7"
services:
petio:
container_name: petio
image: cr.hotio.dev/hotio/petio
ports:
- "7777:7777"
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Etc/UTC
volumes:
- /<host_folder_config>:/config
mongo:
container_name: mongo
image: mongo
user: "1000:1000"
volumes:
- /<host_folder_configdb>:/data/configdb
- /<host_folder_db>:/data/db
You'll need to pre-create the folders for Mongo on the host and give them the correct permissions. The folder /data/configdb
isn't always required, take a look at the Mongo documentation to see if this applies to you. For ease of use you'll want to create a custom bridge network (most likely you already have one) for Mongo and Petio (and others) when using the cli commands, so that you can refer to the Mongo container by containername.
For first time setup you'll need to visit http://<ip or hostname>:7777/admin
.
Tags¶
Where can I find the source of the image?
You can click the tag name to go to the source on GitHub for that particular tag. Every tag has its own branch.
The master
branch is used as a landing page and to store some statistics used by this page to populate the table.
Temporary tags/branches might not show up in the table, but are also generally not for end-user consumption.
Clicking the commit sha brings you to the exact source of that commit.
Tag | Upstream | Version | Commit | Last Updated |
---|