blob: 78cb0a879e3418aeb0345aa8ce1b5636529a2065 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
version: '3'
services:
aggro:
image: registry.jan.systems/aggro:latest
build:
context: .
ports:
- 8080:8080
volumes:
- ${PWD}/db.json:/app/db.json
- ${PWD}/.env:/app/.env
- ${PWD}/Aggrofile:/app/Aggrofile
|