24 lines
291 B
YAML
24 lines
291 B
YAML
services:
|
|
|
|
api:
|
|
build: .
|
|
restart: always
|
|
expose:
|
|
- "8000"
|
|
env_file:
|
|
- .env
|
|
networks:
|
|
- linedance
|
|
|
|
adminer:
|
|
image: adminer
|
|
restart: always
|
|
expose:
|
|
- "8080"
|
|
networks:
|
|
- linedance
|
|
|
|
networks:
|
|
linedance:
|
|
name: linedance
|