fix api config auth and image model compatibility
Some checks failed
Build & Push Docker Image / build-and-push (push) Has been cancelled
Some checks failed
Build & Push Docker Image / build-and-push (push) Has been cancelled
This commit is contained in:
@@ -11,7 +11,7 @@ services:
|
||||
ports:
|
||||
- "13306:3306"
|
||||
volumes:
|
||||
- mysql_data:/var/lib/mysql
|
||||
- /docker/waoowaoo/backup/mysql_data:/var/lib/mysql
|
||||
command:
|
||||
- "--default-authentication-plugin=mysql_native_password"
|
||||
- "--sql_mode=STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION"
|
||||
@@ -30,7 +30,7 @@ services:
|
||||
ports:
|
||||
- "16379:6379"
|
||||
volumes:
|
||||
- redis_data:/data
|
||||
- /docker/waoowaoo/backup/redis_data:/data
|
||||
command: ["redis-server", "--appendonly", "yes"]
|
||||
healthcheck:
|
||||
test: ["CMD", "redis-cli", "ping"]
|
||||
@@ -52,7 +52,7 @@ services:
|
||||
- "19000:9000"
|
||||
- "19001:9001"
|
||||
volumes:
|
||||
- minio_data:/data
|
||||
- /docker/waoowaoo/backup/minio:/data
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://127.0.0.1:9000/minio/health/live"]
|
||||
interval: 5s
|
||||
@@ -62,7 +62,10 @@ services:
|
||||
|
||||
# ==================== App (Next.js + Workers) ====================
|
||||
app:
|
||||
image: ghcr.io/saturndec/waoowaoo:latest
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
image: waoowaoo:local
|
||||
container_name: waoowaoo-app
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
@@ -120,8 +123,8 @@ services:
|
||||
- "13000:3000"
|
||||
- "13010:3010"
|
||||
volumes:
|
||||
- ./data:/app/data
|
||||
- ./docker-logs:/app/logs
|
||||
- /docker/waoowaoo/backup/data:/app/data
|
||||
- /docker/waoowaoo/backup/docker-logs:/app/logs
|
||||
depends_on:
|
||||
mysql:
|
||||
condition: service_healthy
|
||||
|
||||
Reference in New Issue
Block a user