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