-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
75 lines (69 loc) · 1.67 KB
/
docker-compose.dev.yml
File metadata and controls
75 lines (69 loc) · 1.67 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
networks:
net:
name: doi-api-dev
envidat:
external: true
services:
doi_api_dev:
container_name: doi_api_dev
image: "${INTERNAL_REG}/doi-publishing-api:${APP_VERSION}-dev"
build:
context: .
args:
- APP_VERSION=${APP_VERSION}
- PYTHON_IMG_TAG=${PYTHON_IMG_TAG}
- EXTERNAL_REG=${EXTERNAL_REG}
dockerfile: ./Dockerfile
#depends_on:
# - doi_db_copy_dev
env_file:
- .env
environment:
IS_DOCKER: "True"
networks:
- net
- envidat
restart: unless-stopped
doi_proxy_dev:
container_name: doi_api_proxy_dev
build:
context: ./nginx
dockerfile: Dockerfile
args:
BASE_DEBIAN: debian:bookworm
NGINX_BASE: nginx:bookworm
MAINTAINER_DEVOPS: "envidat"
# image: doi-proxy:local
depends_on:
- doi_api_dev
environment:
- APP_HOST=doi_api_dev:8000
- AUTH_COOKIE_NAME=envidat_dev
ports:
- "50010:80"
networks:
- net
restart: unless-stopped
# doi_proxy_dev:
# container_name: doi_api_proxy_dev
# image: "${INTERNAL_REG}/doi-publishing-api/proxy:${NGINX_IMG_TAG}-main"
# depends_on:
# - doi_api_dev
# environment:
# - APP_HOST=doi_api_dev:8000
# - AUTH_COOKIE_NAME=envidat_dev
# ports:
# - "50011:80"
# networks:
# - net
# restart: unless-stopped
# doi_db_copy_dev:
# container_name: ckan_db_copy_dev
# image: "registry-gitlab.wsl.ch/envidat/ckan-container/db:15-dev"
# env_file:
# - secret/db-copy.env
# networks:
# - net
# healthcheck:
# test: ["CMD", "pg_isready", "-U", "postgres"]
# restart: unless-stopped