25 lines
455 B
YAML
25 lines
455 B
YAML
service:
|
|
name: image-list
|
|
type: api
|
|
|
|
deploy:
|
|
namespace: backend-for-learning
|
|
domain: image-list.vigdorov.ru
|
|
|
|
infrastructure:
|
|
postgres: true
|
|
|
|
env:
|
|
- name: DATABASE_HOST
|
|
value: "image-list-postgres"
|
|
- name: DATABASE_PORT
|
|
value: "5432"
|
|
- name: DATABASE_USER
|
|
value: "image_list_user"
|
|
- name: DATABASE_PASSWORD
|
|
value: "ImageList_DB_2025"
|
|
- name: DATABASE_NAME
|
|
value: "image_list_db"
|
|
- name: CORS_ORIGIN
|
|
value: "*"
|