13 lines
230 B
YAML
13 lines
230 B
YAML
|
version: '3.7'
|
||
|
|
||
|
services:
|
||
|
plug:
|
||
|
image: anthrove/plug-[PLUG_NAME]:latest
|
||
|
build:
|
||
|
context: ../.
|
||
|
dockerfile: build/package/Dockerfile
|
||
|
env_file: plug.env
|
||
|
restart: on-failure
|
||
|
ports:
|
||
|
- "8080:8080"
|