forked from hsos-ai-lab/agri-gaia-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.override.yml
61 lines (54 loc) · 1.91 KB
/
docker-compose.override.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# SPDX-FileCopyrightText: 2024 University of Applied Sciences Osnabrück
# SPDX-FileContributor: Andreas Schliebitz
# SPDX-FileContributor: Henri Graf
# SPDX-FileContributor: Jonas Tüpker
# SPDX-FileContributor: Lukas Hesse
# SPDX-FileContributor: Maik Fruhner
# SPDX-FileContributor: Prof. Dr.-Ing. Heiko Tapken
# SPDX-FileContributor: Tobias Wamhof
#
# SPDX-License-Identifier: AGPL-3.0-or-later
services:
reverse_proxy:
command:
- --providers.docker=true
- --providers.docker.exposedbydefault=false
- --providers.file.directory=/etc/traefik
- --providers.file.watch=true
- --api.insecure=true
- --entrypoints.http.address=:80
- --entrypoints.http.http.redirections.entrypoint.to=https
- --entrypoints.http.http.redirections.entrypoint.scheme=https
- --entrypoints.https.address=:443
- --entryPoints.https.transport.respondingTimeouts.readTimeout=0
- --entrypoints.edge.address=:8000
- --entryPoints.edge.transport.respondingTimeouts.readTimeout=0
- --accesslog
- --log.level=INFO
backend:
build:
context: services/backend
dockerfile: Dockerfile-dev
environment:
- DEBUG=true
volumes:
- ./services/backend:/code
frontend:
build:
context: services/frontend
dockerfile: Dockerfile-dev
volumes:
- ./services/frontend/public:/code/public
- ./services/frontend/src:/code/src
build_container:
volumes:
- ./secrets/certs/self-signed/${PROJECT_BASE_URL}.crt:/etc/docker/certs.d/registry.${PROJECT_BASE_URL}/ca.crt
portainer:
volumes:
- ./secrets/certs/self-signed/ca.${PROJECT_BASE_URL}.crt:/etc/ssl/certs/ca.${PROJECT_BASE_URL}.crt
jupyterhub:
build:
context: services/jupyterhub
dockerfile: Dockerfile-dev
volumes:
- ./secrets/certs/self-signed/ca.${PROJECT_BASE_URL}.crt:/usr/local/share/ca-certificates/extra/ca.${PROJECT_BASE_URL}.crt