29 lines
641 B
YAML
29 lines
641 B
YAML
version: '3'
|
|
services:
|
|
max:
|
|
image: max-dev
|
|
volumes:
|
|
- ./max:/app/max
|
|
depends_on:
|
|
- postgresql
|
|
command: $MAX_COMMAND
|
|
ports:
|
|
- 8000:8000/tcp
|
|
environment:
|
|
- PGSQL_HOST=postgresql
|
|
- PGSQL_USER=max
|
|
- PGSQL_PASSWORD=max
|
|
- PGSQL_NAME=max
|
|
networks:
|
|
- postgresql
|
|
postgresql:
|
|
image: postgres:13
|
|
environment:
|
|
- POSTGRES_USER=max
|
|
- POSTGRES_PASSWORD=max
|
|
- POSTGRES_DB=max
|
|
networks:
|
|
- postgresql
|
|
networks:
|
|
postgresql:
|