Skip to content

Commit d3ca7a4

Browse files
committed
fix: update full compose with latest zilean changes
1 parent a396400 commit d3ca7a4

File tree

1 file changed

+7
-21
lines changed

1 file changed

+7
-21
lines changed

docker-compose-full.yml

+7-21
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This is a full setup for Riven with Plex, Overseerr, Zilean, and Torrentio.
1+
# This is a full setup for Riven with Plex, Overseerr, and Zilean.
22
# This compose assumes you already setup rclone and zurg. See notes below!
33

44
## Notes:
@@ -128,31 +128,17 @@ services:
128128
volumes:
129129
- zilean_data:/app/data
130130
environment:
131-
Zilean__ElasticSearch__Url: http://elasticsearch:9200
131+
# You may have to create the zilean database manually with the following command:
132+
# docker exec -it riven-db createdb -U postgres -W zilean
133+
Zilean__Database__ConnectionString: "Host=riven-db;Port=5432;Database=zilean;Username=postgres;Password=postgres"
132134
healthcheck:
133135
test: curl --connect-timeout 10 --silent --show-error --fail http://localhost:8181/healthchecks/ping
134136
timeout: 60s
135137
interval: 30s
136138
retries: 10
137139
depends_on:
138-
elasticsearch:
140+
riven_postgres:
139141
condition: service_healthy
140142

141-
elasticsearch:
142-
image: elasticsearch:8.14.1@sha256:ff3998ab3d8a84984e5298d33d01a174fc5f8abed15ad58d0a54364fc63d68d9
143-
container_name: elasticsearch
144-
environment:
145-
ES_SETTING_DISCOVERY_TYPE: single-node
146-
ES_SETTING_XPACK_SECURITY_ENABLED: false
147-
ES_SETTING_BOOTSTRAP_MEMORY__LOCK: true
148-
ES_JAVA_OPTS: "-Xms512m -Xmx512m"
149-
ports:
150-
- "9200:9200"
151-
- "9300:9300"
152-
healthcheck:
153-
test: curl -s http://localhost:9200 >/dev/null || exit 1
154-
interval: 30s
155-
timeout: 10s
156-
retries: 10
157-
volumes:
158-
- elastic_data:/usr/share/elasticsearch/data:rw
143+
volumes:
144+
zilean_data:

0 commit comments

Comments
 (0)