generated from userver-framework/pg_service_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
65 lines (62 loc) · 1.55 KB
/
docker-compose.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
62
63
64
65
version: "3.8"
services:
postgres:
container_name: service-postgres
image: postgres:14
environment:
- POSTGRES_DB=authentification_service_db_1
- POSTGRES_USER=user
- POSTGRES_PASSWORD=password
ports:
- '5432'
volumes:
- ./postgresql/schemas:/docker-entrypoint-initdb.d
- ./.pgdata:/var/lib/postgresql/data
networks:
- postgres
authentification_service-container:
image: ghcr.io/userver-framework/ubuntu-22.04-userver-base-ci:latest
privileged: true
environment:
- POSTGRES_DB=authentification_service_db_1
- POSTGRES_USER=user
- POSTGRES_PASSWORD=password
- PREFIX=${PREFIX:-~/.local}
- CC
- CCACHE_DIR=/authentification_service/.ccache
- CCACHE_HASHDIR
- CCACHE_NOHASHDIR
- CCACHE_PREFIX
- CCACHE_SIZE
- CMAKE_OPTS
- CORES_DIR=/cores
- CXX
- MAKE_OPTS
- CMAKE_COMMON_FLAGS
volumes:
- .:/authentification_service:rw
- ./third_party/userver/tools/docker:/tools:ro
- ${TC_CORES_DIR:-./.cores}:/cores:rw
ports:
- '8080:8080'
working_dir: /authentification_service
entrypoint:
- /tools/run_as_user.sh
depends_on:
- postgres
networks:
- postgres
- dockerbridge
networks:
postgres:
driver: bridge
dockerbridge:
enable_ipv6: true
driver: bridge
driver_opts:
com.docker.network.enable_ipv6: "true"
ipam:
driver: default
config:
- subnet: 2001:3984:3989::/64
gateway: 2001:3984:3989::1