17 lines
283 B
YAML
17 lines
283 B
YAML
|
version: '3'
|
||
|
|
||
|
services:
|
||
|
hypermirror:
|
||
|
image: rusian/hypermirror
|
||
|
container_name: hypermirror
|
||
|
env_file: config.env
|
||
|
ports:
|
||
|
- '3000:80'
|
||
|
volumes:
|
||
|
- './data/repo:/srv/repo'
|
||
|
tty: true
|
||
|
restart: always
|
||
|
logging:
|
||
|
options:
|
||
|
max-size: 1g
|