fromis_9/docker-compose.yml

37 lines
680 B
YAML
Raw Normal View History

services:
fromis9-web:
build: .
container_name: fromis9-frontend
labels:
- "com.centurylinklabs.watchtower.enable=false"
env_file:
- .env
networks:
- app
- db
restart: unless-stopped
meilisearch:
image: getmeili/meilisearch:v1.6
container_name: fromis9-meilisearch
environment:
- MEILI_MASTER_KEY=${MEILI_MASTER_KEY}
volumes:
- ./meilisearch_data:/meili_data
networks:
- app
restart: unless-stopped
redis:
image: redis:7-alpine
container_name: fromis9-redis
networks:
- app
restart: unless-stopped
networks:
app:
external: true
db:
external: true