mirror of
https://github.com/correl/dejavu.git
synced 2024-11-23 19:19:53 +00:00
22 lines
380 B
YAML
22 lines
380 B
YAML
|
version: '3'
|
||
|
services:
|
||
|
db:
|
||
|
build:
|
||
|
context: ./docker/postgres
|
||
|
environment:
|
||
|
- POSTGRES_DB=dejavu
|
||
|
- POSTGRES_USER=postgres
|
||
|
- POSTGRES_PASSWORD=password
|
||
|
networks:
|
||
|
- db_network
|
||
|
python:
|
||
|
build:
|
||
|
context: ./docker/python
|
||
|
volumes:
|
||
|
- .:/code
|
||
|
depends_on:
|
||
|
- db
|
||
|
networks:
|
||
|
- db_network
|
||
|
networks:
|
||
|
db_network:
|