mirror of
https://github.com/simon987/Architeuthis.git
synced 2025-04-04 08:02:59 +00:00
23 lines
344 B
YAML
23 lines
344 B
YAML
version: '3'
|
|
|
|
services:
|
|
architeuthis:
|
|
build: .
|
|
ports:
|
|
- "5050:5050"
|
|
redis:
|
|
image: "redis:alpine"
|
|
|
|
# (Optional)
|
|
influxdb:
|
|
image: "influxdb"
|
|
environment:
|
|
- INFLUXDB_DB=architeuthis
|
|
grafana:
|
|
build: ./grafana
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
- GF_SECURITY_ADMIN_PASSWORD=changeme
|
|
|