2021-09-27 17:34:14 +00:00
|
|
|
version: '3'
|
|
|
|
|
|
|
|
networks:
|
|
|
|
gateway:
|
|
|
|
external: true
|
|
|
|
name: gateway
|
|
|
|
backend:
|
|
|
|
internal: true
|
|
|
|
|
|
|
|
services:
|
2021-11-25 11:22:15 +00:00
|
|
|
postgres:
|
|
|
|
image: "openmaptiles/postgis:6.0"
|
|
|
|
environment:
|
|
|
|
POSTGRES_USER: obs
|
|
|
|
POSTGRES_PASSWORD: obs
|
|
|
|
POSTGRES_DB: obs
|
2021-09-27 17:34:14 +00:00
|
|
|
volumes:
|
2021-11-25 11:22:15 +00:00
|
|
|
- ./data/postgres/data:/var/lib/postgresql/data
|
2021-09-27 17:34:14 +00:00
|
|
|
|
2021-11-21 16:05:46 +00:00
|
|
|
portal:
|
|
|
|
image: openbikesensor-portal
|
2021-09-27 17:34:14 +00:00
|
|
|
build:
|
2021-11-21 16:05:46 +00:00
|
|
|
context: ./source
|
2021-09-27 17:34:14 +00:00
|
|
|
volumes:
|
|
|
|
- ./data/api-data:/data
|
2021-11-21 16:05:46 +00:00
|
|
|
- ./config/config.py:/opt/obs/api/config.py
|
|
|
|
- ./data/tiles/:/tiles
|
2021-09-27 17:34:14 +00:00
|
|
|
restart: on-failure
|
2021-11-25 11:22:15 +00:00
|
|
|
links:
|
|
|
|
- postgres
|
2021-09-27 17:34:14 +00:00
|
|
|
labels:
|
2021-11-21 16:05:46 +00:00
|
|
|
- traefik.http.routers.portal.rule=Host(`portal.example.com`)
|
|
|
|
- traefik.http.routers.portal.entrypoints=websecure
|
|
|
|
- traefik.http.routers.portal.tls=true
|
|
|
|
- traefik.http.routers.portal.tls.certresolver=leresolver
|
2021-09-27 17:34:14 +00:00
|
|
|
- traefik.docker.network=gateway
|
2021-11-25 11:22:15 +00:00
|
|
|
- traefik.http.services.whoami.loadbalancer.server.port=80
|
2021-09-27 17:34:14 +00:00
|
|
|
networks:
|
|
|
|
- gateway
|
|
|
|
- backend
|
|
|
|
|
|
|
|
traefik:
|
|
|
|
image: traefik:2.4.8
|
|
|
|
restart: always
|
|
|
|
ports:
|
|
|
|
- "80:80"
|
|
|
|
- "443:443"
|
|
|
|
# The Web UI (enabled by [api] in traefik.toml)
|
|
|
|
# - "8080:8080"
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
|
|
- ./config/traefik.toml:/traefik.toml
|
|
|
|
- ./config/usersfile:/usersfile
|
2021-10-20 21:14:55 +00:00
|
|
|
- ./config/acme:/acme
|
2021-09-27 17:34:14 +00:00
|
|
|
|
|
|
|
networks:
|
|
|
|
- gateway
|
|
|
|
|
|
|
|
labels:
|
|
|
|
# global redirect from http to https
|
|
|
|
- "traefik.http.routers.http-catchall.rule=hostregexp(`{host:.+}`)"
|
|
|
|
- "traefik.http.routers.http-catchall.entrypoints=web"
|
|
|
|
# Define middlewares to be used
|
|
|
|
- "traefik.http.routers.http-catchall.middlewares=redirect-http-to-https"
|
|
|
|
# Configure middlewares
|
|
|
|
- "traefik.http.middlewares.redirect-http-to-https.redirectscheme.scheme=https"
|
|
|
|
|
|
|
|
# Show Traefik Dashboard. Enable the dashboard in traefik.toml if you use these.
|
|
|
|
# - "traefik.http.routers.traefik.rule=Host(`traefik.example.com`)"
|
|
|
|
# - "traefik.http.routers.traefik.service=api@internal"
|
|
|
|
# - "traefik.http.routers.traefik.tls=true"
|
|
|
|
# - "traefik.http.routers.traefik.entrypoints=websecure"
|
|
|
|
# - "traefik.http.routers.traefik.tls.certresolver=leresolver"
|
|
|
|
# - "traefik.http.routers.traefik.middlewares=basic-auth"
|
|
|
|
# - "traefik.http.middlewares.basic-auth.basicauth.usersfile=/usersfile"
|