File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ services:
44
55 dachs :
66 container_name : dachs
7- image : dachs:${INSTALL_REPO:- latest}
7+ image : dachs:latest
88 build :
99 context : ./dachs
1010 args :
Original file line number Diff line number Diff line change @@ -3,26 +3,26 @@ version: '3'
33services :
44
55 postgres :
6+ container_name : postgres
7+ image : dachs:postgres
68 build :
7- context : ./postgres
9+ context : ./dachs
810 args :
911 PG_VERSION : " ${PG_VERSION:-13}"
10- container_name : postgres
11- image : dachs:postgres
1212 tty : true
1313 network_mode : ' bridge'
1414
1515 dachs :
16+ container_name : dachs
17+ image : dachs:server
18+ depends_on :
19+ - postgres
1620 build :
1721 context : ./dachs
1822 dockerfile : Dockerfile.dachs_server
1923 args :
2024 INSTALL_REPO : " ${INSTALL_REPO}"
2125 PG_VERSION : " ${PG_VERSION:-13}"
22- container_name : dachs
23- image : dachs:server
24- depends_on :
25- - postgres
2626 links :
2727 - postgres
2828 tty : true
You can’t perform that action at this time.
0 commit comments