initial commit
This commit is contained in:
30
collection-manager/docker-compose.yml
Normal file
30
collection-manager/docker-compose.yml
Normal file
@@ -0,0 +1,30 @@
|
||||
services:
|
||||
koillection:
|
||||
image: koillection/koillection
|
||||
container_name: koillection
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 5645:80
|
||||
env_file:
|
||||
- .env
|
||||
depends_on:
|
||||
- db
|
||||
volumes:
|
||||
- /mnt/user/appdata/koillection/uploads:/uploads
|
||||
labels:
|
||||
folder.view2: "Services"
|
||||
|
||||
db:
|
||||
image: postgres:16
|
||||
container_name: db
|
||||
restart: unless-stopped
|
||||
env_file:
|
||||
- .env
|
||||
environment:
|
||||
- POSTGRES_DB=${DB_NAME}
|
||||
- POSTGRES_USER=${DB_USER}
|
||||
- POSTGRES_PASSWORD=${DB_PASSWORD}
|
||||
volumes:
|
||||
- /mnt/user/appdata/koillection/postgresql:/var/lib/postgresql/data
|
||||
labels:
|
||||
folder.view2: "Databases"
|
||||
Reference in New Issue
Block a user