mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-08-03 15:22:36 +00:00
Docker Compose to build AIO
This commit is contained in:
parent
808e305a1c
commit
a1792fcc51
1 changed files with 24 additions and 0 deletions
24
docker/docker-compose-aio.yml
Normal file
24
docker/docker-compose-aio.yml
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
services:
|
||||
dispatcharr:
|
||||
build:
|
||||
context: ..
|
||||
dockerfile: docker/DockerfileAIO
|
||||
container_name: dispatcharr-dev
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 9191:9191
|
||||
#- 5432:5432
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- POSTGRES_HOST=localhost
|
||||
- POSTGRES_USER=dispatch
|
||||
- POSTGRES_PASSWORD=secret
|
||||
- POSTGRES_PORT=5432
|
||||
- POSTGRES_DB=dispatcharr
|
||||
- DJANGO_SUPERUSER_USERNAME=admin
|
||||
- DJANGO_SUPERUSER_PASSWORD=adminpassword
|
||||
- DJANGO_SUPERUSER_EMAIL=admin@example.com
|
||||
volumes:
|
||||
- ./data:/app/data
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue