forked from xibosignage/xibo-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
47 lines (41 loc) · 849 Bytes
/
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
version: "3"
services:
db:
image: mysql:5.7
ports:
- 3315:3306
volumes:
- ./containers/db:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: "root"
MYSQL_DATABASE: "cms"
xmr:
image: ghcr.io/xibosignage/xibo-xmr:latest
ports:
- "9505:9505"
environment:
XMR_DEBUG: "true"
IPV6RESPSUPPORT: "false"
IPV6PUBSUPPORT: "false"
web:
build:
context: .
dockerfile: Dockerfile.dev
volumes:
- ./:/var/www/cms
ports:
- "80:80"
environment:
CMS_DEV_MODE: "true"
MYSQL_DATABASE: "cms"
memcached:
image: memcached:alpine
command: memcached -m 15
swagger:
image: swaggerapi/swagger-ui:latest
ports:
- "8080:8080"
environment:
- API_URL=http://localhost/swagger.json
quickchart:
image: ianw/quickchart