smk-chat/docker-compose.yml

36 lines
642 B
YAML
Raw Permalink Normal View History

2024-06-11 17:22:27 +03:00
version: "3.3"
services:
chat:
build: .
2024-06-14 01:59:37 +03:00
restart: always
2024-06-11 17:22:27 +03:00
ports:
2024-06-15 03:24:14 +03:00
- 8080:8080
2024-06-11 17:22:27 +03:00
networks:
ne_nuzhen:
ipv4_address: 10.5.0.5
depends_on:
- db
db:
image: 'postgres:15'
ports:
- 5432:5432
networks:
ne_nuzhen:
ipv4_address: 10.5.0.6
2024-06-14 01:59:37 +03:00
volumes:
- ./postgres:/var/lib/postgresql/data
2024-06-11 17:22:27 +03:00
environment:
2024-06-21 16:26:34 +03:00
POSTGRES_USER: smk # do not forget to change these in config.json!
POSTGRES_PASSWORD: CHANGEME
POSTGRES_DB: chat
2024-06-11 17:22:27 +03:00
networks:
ne_nuzhen:
driver: bridge
ipam:
config:
- subnet: 10.5.0.0/16
2024-06-14 01:59:37 +03:00
gateway: 10.5.0.1