blob: e1fe46bb0fc83b9d141af33ee50f3571186d6ce5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
services:
web:
build:
dockerfile: docker/Dockerfile
context: ../../
target: aio
restart: unless-stopped
ports:
- "${KARAKEEP_PORT:-3000}:3000"
environment:
DATA_DIR: /tmp
NEXTAUTH_SECRET: secret
NEXTAUTH_URL: http://localhost:${KARAKEEP_PORT:-3000}
MEILI_MASTER_KEY: dummy
MEILI_ADDR: http://meilisearch:7700
BROWSER_WEB_URL: http://chrome:9222
meilisearch:
image: getmeili/meilisearch:v1.13.3
restart: unless-stopped
environment:
MEILI_NO_ANALYTICS: "true"
MEILI_MASTER_KEY: dummy
chrome:
image: gcr.io/zenika-hub/alpine-chrome:123
restart: unless-stopped
command:
- --no-sandbox
- --disable-gpu
- --disable-dev-shm-usage
- --remote-debugging-address=0.0.0.0
- --remote-debugging-port=9222
- --hide-scrollbars
nginx:
image: nginx:alpine
restart: unless-stopped
volumes:
- ./setup/html:/usr/share/nginx/html
|