15 lines
310 B
YAML
15 lines
310 B
YAML
|
version: '3.3'
|
||
|
services:
|
||
|
frostbyte:
|
||
|
container_name: frostbyte
|
||
|
build:
|
||
|
context: "."
|
||
|
dockerfile: Containerfile
|
||
|
ports:
|
||
|
- '8080:8080'
|
||
|
restart: always
|
||
|
logging:
|
||
|
options:
|
||
|
max-size: 10m
|
||
|
image: frostbyte
|