13 lines
214 B
YAML
13 lines
214 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
docker-manager:
|
|
build: .
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
environment:
|
|
- PORT=3000
|
|
restart: unless-stopped
|