mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 20:35:24 +01:00
121567fa03
- Update dependencies - Remove lib/ - Dashboard
16 lines
271 B
YAML
16 lines
271 B
YAML
redis:
|
|
name: redis:latest
|
|
image: redis
|
|
expose:
|
|
- 6379
|
|
volumes:
|
|
- /tmp/redis:/data
|
|
|
|
mongodb:
|
|
image: mongo:latest
|
|
command: mongod --smallfiles --directoryperdb --noprealloc
|
|
hostname: mongodb
|
|
volumes:
|
|
- /tmp/mongodb:/data/db
|
|
expose:
|
|
- 27017 |