fix db container name

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2020-04-02 19:40:46 +02:00
parent acadcc529b
commit f35f4241d7
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ starterpack_app_vol: '{{ starterpack_service_path }}/app'
starterpack_app_port: 3000
# PostgreSQL for data storage
starterpack_db_name: '{{ starterpack_service_name }}-db'
starterpack_db_cont_name: '{{ starterpack_service_name }}-db'
starterpack_db_tag: '9.6-alpine'
starterpack_db_image: 'postgres:{{ starterpack_db_tag }}'
starterpack_db_vol: '{{ starterpack_service_path }}/db'

View File

@ -19,7 +19,7 @@
- '{{ starterpack_app_vol }}:/data'
db:
container_name: '{{ starterpack_db_name }}'
container_name: '{{ starterpack_db_cont_name }}'
image: '{{ starterpack_db_image }}'
user: root
restart: 'on-failure'