mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-08 23:45:24 +02:00
* Add Docker Compose configuration for Maxio service * Add template configuration for maxio service * Add Maxio logo * Add Maxio metadata to meta.json Added metadata for Maxio including links and tags. * Run node dedupe-and-sort-meta.js * Fix name from Maxio to MaxIO * Make suggested updates * Add missing restart policy * Make improvements
16 lines
298 B
YAML
16 lines
298 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
maxio:
|
|
image: ghcr.io/coollabsio/maxio:0.2.1
|
|
expose:
|
|
- 9000
|
|
volumes:
|
|
- maxio-data:/data
|
|
environment:
|
|
- MAXIO_ACCESS_KEY=${MAXIO_ACCESS_KEY}
|
|
- MAXIO_SECRET_KEY=${MAXIO_SECRET_KEY}
|
|
restart: unless-stopped
|
|
volumes:
|
|
maxio-data:
|