29 lines
633 B
YAML
29 lines
633 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: sameersbn/postgresql:10
|
|
environment:
|
|
- DB_USER=max
|
|
- DB_PASS=max
|
|
- DB_NAME=max
|
|
networks:
|
|
- postgresql
|
|
networks:
|
|
postgresql:
|