1234567891011121314151617181920212223242526272829303132333435363738394041 |
- version: '2'
- services:
- staff-server:
- privileged: true
- image: "docker.finogeeks.club/finochat/homeserver:1.25.13"
- environment:
- DB_DATABASE: matrix
- DB_HOST: postgres
- DB_PASSWORD: mm123321
- DB_USER: matrix
- DOMAIN_NAME: localhost
- RESOURCES: client,webclient
- ENABLE_REGISTRATION: "True"
- SECRET_KEY: "ForPyTest"
- ports:
- - 8448:8448
- - 8008:8008
- command:
- - start
- depends_on:
- - postgres
- links:
- - postgres
- labels:
- io.rancher.container.pull_image: always
- io.rancher.scheduler.affinity:host_label: hs.retail.env=finochat
- postgres:
- image: "docker.finogeeks.club/base/postgres"
- environment:
- POSTGRES_DB: matrix
- POSTGRES_PASSWORD: mm123321
- POSTGRES_USER: matrix
- ports:
- - 15433:5432
- #volumes:
- # - ./db/data:/var/lib/postgresql/data
- networks:
- app_net:
- external: true
|