added docker files
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
version: '3'
|
||||
|
||||
services:
|
||||
petio:
|
||||
image: ghcr.io/petio-team/petio:latest
|
||||
container_name: 'petio'
|
||||
hostname: petio
|
||||
ports:
|
||||
- '7777:7777'
|
||||
user: '1000:1000'
|
||||
depends_on:
|
||||
- petio-mongodb
|
||||
environment:
|
||||
- TZ=America/Chicago
|
||||
volumes:
|
||||
- /docker/appdata/petio/config:/app/api/config
|
||||
- /docker/appdata/petio/logs:/app/logs
|
||||
|
||||
petio-mongodb:
|
||||
image: mongo:latest
|
||||
container_name: 'petio-mongodb'
|
||||
hostname: petio-mongodb
|
||||
user: '1000:1000'
|
||||
volumes:
|
||||
- /docker/appdata/petio-mongodb/db:/data/db
|
||||
- /docker/appdata/petio-mongodb/configdb:/data/configdb
|
||||
Reference in New Issue
Block a user