mirror of
https://github.com/gomods/athens
synced 2026-02-03 11:00:32 +00:00
* basic structure * added olympus endpoint for fetching log * broken test * added backing buffalo job * slightly reshuffled, todo more shuffling * reshuffle more * breaking things up * more breaking up * hook to 101 * added redis to docker compose file * working! * a * build fix * first batch of changes towards new arch" * first batch of comments resolved * override for olympus endpoint * styling * osFs fix * fixed in memory storage * in-mem storage and test (#166)
45 lines
939 B
YAML
45 lines
939 B
YAML
version: '3'
|
|
services:
|
|
redis:
|
|
image: redis:alpine
|
|
command: ["redis-server", "--appendonly", "yes"]
|
|
ports:
|
|
- "6379:6379"
|
|
mongo:
|
|
image: mongo:3.7.9-jessie
|
|
ports:
|
|
- 27017:27017
|
|
mysql:
|
|
image: bitnami/mysql:5.7.21-r7
|
|
ports:
|
|
- "3306:3306"
|
|
environment:
|
|
- "ALLOW_EMPTY_PASSWORD=yes"
|
|
- "MYSQL_USER=vgp"
|
|
- "MYSQL_PASSWORD=vgp"
|
|
- "MYSQL_DATABASE=athens"
|
|
postgres:
|
|
image: postgres:9.6.9-alpine
|
|
ports:
|
|
- "5432:5432"
|
|
minio:
|
|
image: minio/minio:latest
|
|
command: server /data
|
|
ports:
|
|
- "9000:9000"
|
|
environment:
|
|
MINIO_ACCESS_KEY: minio
|
|
MINIO_SECRET_KEY: minio123
|
|
jaeger:
|
|
environment:
|
|
- COLLECTOR_ZIPKIN_HTTP_PORT=9441
|
|
image: jaegertracing/all-in-one:latest
|
|
ports:
|
|
- 14268:14268
|
|
- 9411:9411
|
|
- 5775:5775/udp
|
|
- 6831:6831/udp
|
|
- 6832:6832/udp
|
|
- 5778:5778
|
|
- 16686:16686
|