-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm4a10-external.yml
43 lines (41 loc) · 1.03 KB
/
m4a10-external.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
version: '3'
networks:
easy-docker-host:
external: true
services:
m4a10-db:
image: postgres:12
pull_policy: always
container_name: m4a10-db
restart: unless-stopped
environment:
- POSTGRES_DATABASE=ssy
- POSTGRES_USER=ssy
- POSTGRES_PASSWORD=6PhmavGc#H58q
networks:
- easy-docker-host
m4a10:
image: hub.atempo.cloud/releases/miria-analytics:1.0-latest
pull_policy: always
container_name: m4a10
restart: unless-stopped
networks:
- easy-docker-host
privileged: true
ports:
- 443
- 9111
hostname: m4a10
environment:
- POSTGRES_SERVER=m4a10-db
- POSTGRES_DATABASE=ssy
- POSTGRES_USER=ssy
- POSTGRES_PASSWORD=6PhmavGc#H58q
- POSTGRES_PORT=5432
env_file:
- stack.env
labels:
- traefik.http.services.m4a10.loadbalancer.server.port=443
- traefik.http.services.m4a10.loadbalancer.server.scheme=https
depends_on:
- "m4a10-db"