mirror of
https://github.com/Redume/Kekkai.git
synced 2025-02-23 20:51:25 +03:00
54 lines
991 B
YAML
54 lines
991 B
YAML
|
version: '3.8'
|
||
|
|
||
|
services:
|
||
|
server:
|
||
|
build:
|
||
|
context: ./
|
||
|
dockerfile: Dockerfile-server
|
||
|
restart: unless-stopped
|
||
|
ports:
|
||
|
- '0.0.0.0:3000:3000'
|
||
|
volumes:
|
||
|
- './CertSSL:/CertSSL'
|
||
|
- './config.yaml:/config.yaml'
|
||
|
depends_on:
|
||
|
- postgres
|
||
|
|
||
|
chart:
|
||
|
build:
|
||
|
context: ./chart
|
||
|
restart: unless-stopped
|
||
|
ports:
|
||
|
- '0.0.0.0:3030:3030'
|
||
|
volumes:
|
||
|
- './CertSSL:/CertSSL'
|
||
|
- './config.yaml:/config.yaml'
|
||
|
depends_on:
|
||
|
- postgres
|
||
|
|
||
|
collect-currency:
|
||
|
build:
|
||
|
context: ./
|
||
|
dockerfile: Dockerfile-collect-currency
|
||
|
restart: unless-stopped
|
||
|
volumes:
|
||
|
- './config.yaml:/config.yaml'
|
||
|
depends_on:
|
||
|
- postgres
|
||
|
|
||
|
postgres:
|
||
|
image: postgres:latest
|
||
|
restart: unless-stopped
|
||
|
env_file: .env
|
||
|
volumes:
|
||
|
- ./postgres-data:/var/lib/postgresql/data
|
||
|
|
||
|
volumes:
|
||
|
server:
|
||
|
driver: local
|
||
|
chart:
|
||
|
driver: local
|
||
|
collect-currency:
|
||
|
driver: local
|
||
|
postgres:
|
||
|
driver: local
|