21 lines
388 B
YAML
21 lines
388 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
autoteacher:
|
|
image: autoteacher-next:latest
|
|
container_name: autoteacher-next
|
|
restart: unless-stopped
|
|
depends_on:
|
|
- rustfs
|
|
ports:
|
|
- "3010:3000"
|
|
volumes:
|
|
- ./.env.local:/app/.env.local:ro
|
|
|
|
rustfs:
|
|
image: rustfs/rustfs:latest
|
|
container_name: rustfs
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./data:/data
|