-
Notifications
You must be signed in to change notification settings - Fork 10
/
SingleContainer-docker-compose.yaml
56 lines (53 loc) · 1.44 KB
/
SingleContainer-docker-compose.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
version: "3"
services:
ceph:
container_name: ceph-s3
image: ceph/daemon:v3.1.0-stable-3.1-mimic-centos-7
restart: always
pid: "host"
privileged: true
user: root
hostname: ceph-s3
LANG: en_US.utf8
TZ: UTC
volumes:
- ./ceph_conf:/etc/ceph
- ./ceph_data:/var/lib/ceph
- ./osd:/var/lib/ceph/osd
command: mon
command: mgr
command: osd_directory
command: rgw
environment:
- customize-failure-domain=true
- RGW_FRONTEND_PORT=7480
- SREE_PORT=5001
- RGW_CIVETWEB_PORT=7480
- EXPOSED_IP=127.0.0.1
- DEBUG=verbose
- CEPH_DEMO_UID=rgwuser
- MON_IP=127.0.0.1
- CEPH_PUBLIC_NETWORK=0.0.0.0/0
- CEPH_DAEMON=demo
- DEMO_DAEMONS=mon,mgr,osd,rgw
- SREE_VERSION=v0.1
- PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
- CEPH_VERSION=mimic
- CEPH_POINT_RELEASE=
- CEPH_DEVEL=false
- CEPH_REF=mimic
- OSD_FLAVOR=default
ports:
- 7480:7480
# - 8080:8080
- 8443:8443
- 5001:5001
networks:
- ceph-net
networks:
ceph-net:
ipam:
driver: default
config:
- subnet: 192.168.105.0/24
69,1 Bot