forked from userver-framework/pg_service_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
54 lines (51 loc) · 1.43 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
version: "2.3"
services:
postgres:
container_name: service-postgres
image: postgres:12
environment:
- POSTGRES_DB=pg_service_template_db-1
- POSTGRES_USER=user
- POSTGRES_PASSWORD=password
ports:
- 5432
volumes:
- ./postgresql/schemas:/docker-entrypoint-initdb.d
- ./.pgdata:/var/lib/postgresql/data
networks:
- postgres
pg_service_template-container:
image: ghcr.io/userver-framework/ubuntu-userver-build-base:v1
privileged: true
environment:
- POSTGRES_DB=pg_service_template_db-1
- POSTGRES_USER=user
- POSTGRES_PASSWORD=password
- PREFIX=${PREFIX:-~/.local}
- CC
- CCACHE_DIR=/pg_service_template/.ccache
- CCACHE_HASHDIR
- CCACHE_NOHASHDIR
- CCACHE_PREFIX
- CCACHE_SIZE
- CMAKE_OPTS
- CORES_DIR=/cores
- CXX
- MAKE_OPTS
- CMAKE_OPTIONS
volumes:
- .:/pg_service_template:rw
- ./third_party/userver/tools/docker:/tools:ro
- ${TC_CORES_DIR:-./.cores}:/cores:rw
ports:
- 8080:8080
working_dir: /pg_service_template
entrypoint:
- /tools/run_as_user.sh
depends_on:
- postgres
networks:
- postgres
networks:
postgres:
driver: bridge