switches to public docker images

This commit is contained in:
Christian Beutel
2024-03-15 23:20:04 +01:00
parent 38a5bf1df4
commit 19d3013cf9
4 changed files with 22 additions and 20 deletions

View File

@@ -7,7 +7,7 @@ x-common-env: &cenv
services:
search:
container_name: wanderer-search
build: ./search
image: flomp/wanderer-search
environment:
<<: *cenv
MEILI_NO_ANALYTICS: true
@@ -17,14 +17,19 @@ services:
- wanderer
volumes:
- ./data/data.ms:/meili_data/data.ms
restart: unless-stopped
healthcheck:
test: curl --fail http://localhost:7700/health || exit 1
interval: 15s
retries: 10
start_period: 20s
timeout: 10s
db:
container_name: wanderer-db
build: ./db
image: flomp/wanderer-db
depends_on:
search:
condition: service_started
condition: service_healthy
environment:
<<: *cenv
ports:
@@ -36,8 +41,10 @@ services:
- ./data/pb_data:/pb_data
web:
container_name: wanderer-web
build: ./web
image: flomp/wanderer-web
depends_on:
search:
condition: service_healthy
db:
condition: service_started
environment: