19 lines
220 B
YAML
19 lines
220 B
YAML
services:
|
|
|
|
api:
|
|
build: .
|
|
restart: always
|
|
ports:
|
|
- "8000:8000"
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- .:/app
|
|
|
|
adminer:
|
|
image: adminer
|
|
restart: always
|
|
ports:
|
|
- "8080:8080"
|
|
|