-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
28 lines (28 loc) · 923 Bytes
/
docker-compose.yml
File metadata and controls
28 lines (28 loc) · 923 Bytes
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
version: "3"
services:
express:
image: docker.pkg.github.com/iobroker/dev-portal/express:main
container_name: iobroker-dev-portal-express
restart: unless-stopped
depends_on:
- mongo
labels:
com.centurylinklabs.watchtower.scope: "github"
environment:
TEMP_DIR: /tmp
GOOGLE_APPLICATION_CREDENTIALS: /app/google-translate-credentials.json
mongo:
image: "mongo:4.4"
container_name: iobroker-dev-portal-mongo
restart: unless-stopped
volumes:
- mongo-data:/data/db
watchtower:
image: nickfedor/watchtower
container_name: iobroker-dev-portal-watchtower
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
command: --cleanup --interval 300 --stop-timeout 30s --scope github
volumes:
mongo-data: {}