Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- version: "3"
- services:
- meilisearch:
- image: getmeili/meilisearch:v1.1
- environment:
- - MEILI_MASTER_KEY=$MEILI_MASTER_KEY
- - MEILI_ENV=production
- restart: unless-stopped
- volumes:
- - meilisearch_data:/meili_data
- redis2:
- image: redis
- environment:
- - ALLOW_EMPTY_PASSWORD=yes
- restart: unless-stopped
- bar-assistant:
- image: barassistant/server:latest
- depends_on:
- - meilisearch
- - redis2
- environment:
- - APP_URL=$API_URL
- - LOG_CHANNEL=stderr
- - MEILISEARCH_KEY=$MEILI_MASTER_KEY
- - MEILISEARCH_HOST=http://meilisearch:7700
- - REDIS_HOST=redis2
- - ALLOW_REGISTRATION=false
- - PARENT_INGREDIENT_SUBSTITUTE=true
- restart: unless-stopped
- volumes:
- - bar_data:/var/www/cocktails/storage/bar-assistant
- salt-rim:
- image: barassistant/salt-rim:latest
- depends_on:
- - bar-assistant
- environment:
- - API_URL=$API_URL
- - MEILISEARCH_URL=$MEILISEARCH_URL
- - BAR_NAME=Curfew
- - DESCRIPTION=6PM Bartender
- restart: unless-stopped
- webserver:
- image: nginx:alpine
- restart: unless-stopped
- ports:
- - 3001:3000
- volumes:
- - /mnt/user/appdata/ba-storage/nginx.conf:/etc/nginx/conf.d/default.conf
- volumes:
- meilisearch_data:
- driver: local
- driver_opts:
- type: none
- o: bind
- device: /mnt/user/appdata/meilisearch
- bar_data:
- driver: local
- driver_opts:
- type: none
- o: bind
- device: /mnt/user/appdata/ba-storage
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement