-
Notifications
You must be signed in to change notification settings - Fork 5
/
docker-compose.yml.example
43 lines (43 loc) · 1.17 KB
/
docker-compose.yml.example
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
version: "3"
services:
postgres:
image: "postgres:latest"
ports:
- "5432:5432"
environment:
POSTGRES_PASSWORD: qwerty
POSTGRES_DB: magpie
POSTGRES_USER: magpie
magpie:
restart: always
image: pavics/magpie:latest
build: .
depends_on:
- postgres
links:
- postgres
ports:
- "2001:2001"
environment:
HOSTNAME: $HOST_FQDN
FORWARDED_ALLOW_IPS: "*"
MAGPIE_URL : https://localhost/magpie # change this url depending of your setup
MAGPIE_SECRET : itzaseekrit
MAGPIE_ADMIN_GROUP : administrators
MAGPIE_ADMIN_USER : admin
MAGPIE_ADMIN_PASSWORD : minimum-12-char
MAGPIE_USER_GROUP : users
MAGPIE_ANONYMOUS_USER : anonymous
MAGPIE_PORT : 2001
MAGPIE_LOG_LEVEL : INFO
TWITCHER_PROTECTED_PATH : /twitcher/ows/proxy
POSTGRES_USER : magpie
POSTGRES_PASSWORD : qwerty
POSTGRES_PORT : 5432
POSTGRES_HOST : postgres
POSTGRES_DB : magpie
MAGPIE_POSTGRES_USERNAME : magpie
MAGPIE_POSTGRES_PASSWORD : qwerty
MAGPIE_POSTGRES_DB : magpie
MAGPIE_POSTGRES_PORT : 5432
MAGPIE_POSTGRES_HOST : postgres