mirror of
https://github.com/gomods/athens
synced 2026-02-03 11:00:32 +00:00
* Implementing a MongoDB backed CDN getter Fixes https://github.com/gomods/athens/issues/49 * removing the base URL from the CDN getter
16 lines
323 B
YAML
16 lines
323 B
YAML
version: '3'
|
|
services:
|
|
mongo:
|
|
image: mongo:3.0.15-wheezy
|
|
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=vgoprox"
|