-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
25 lines (23 loc) · 719 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
25 lines (23 loc) · 719 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
version: '3.7'
services:
pangalink:
restart: always
image: andris9/pangalink:latest
ports:
# API and web interface
- '3480:3480'
depends_on:
- mongo
environment:
# Configuration to Pangalinker can be passed via environment variables
# For full list see https://github.com/andris9/Pangalink.net#konfiguratsioon
# Database connection URL
PL_MONGO_URL: mongodb://root:example@mongo:27017/
mongo:
image: mongo
restart: always
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
volumes:
- /data