-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
61 lines (53 loc) · 1.26 KB
/
docker-compose.yml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
x-app: &app
restart: always
env_file:
- .env
logging:
driver: syslog
options:
tag: docker/{{.Name}}
services:
app:
<<: *app
image: beabee/beabee-legacy-app:release
api_app:
<<: *app
image: beabee/beabee-api-app:release
webhook_app:
<<: *app
image: beabee/beabee-webhook-app:release
cron_app:
<<: *app
image: beabee/beabee-cron-app:release
img_upload_app:
image: beabee/pictshare:release
restart: always
environment:
URL: ${BEABEE_AUDIENCE}/uploads/
volumes:
- ./data/uploads:/var/www/data
run:
<<: *app
image: beabee/beabee-api-app:release
profiles:
- tools
logging:
driver: none
frontend:
image: beabee/beabee-frontend:release
restart: always
environment:
APP_BASE_URL: ${BEABEE_AUDIENCE}
API_BASE_URL: /api/1.0
EXPERIMENTAL_FEATURES: ${BEABEE_EXPERIMENTAL_FEATURES-}
APPSIGNAL_KEY: ${APPSIGNAL_KEY-}
CAPTCHAFOX_KEY: ${BEABEE_CAPTCHAFOX_KEY-}
MAPTILER_KEY: ${BEABEE_MAPTILER_KEY-}
app_router:
image: beabee/beabee-router:release
restart: always
environment:
LEGACY_APP_COOKIE_DOMAIN: ${BEABEE_COOKIE_DOMAIN}
TRUSTED_ORIGINS: ${BEABEE_TRUSTEDORIGINS-}
ports:
- ${MAIN_PORT}:80