Last active
May 15, 2019 03:52
-
-
Save fatfatson/fc8e4bf5c887c65aaf2ffd44b2585e58 to your computer and use it in GitHub Desktop.
testpub
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCkWQv+rhpaIHCOCWPDZAb/nwJHquxLxwWCIV3Gew8yHCKUD8Ggq0tdX8kO5eVs1lZb3Rthe2PCpbYXonw76hTwLO2CYG6QE/7yGAiBa0Ye5hoeakM4nn+cb1aY0RpAkPUwbMHHdQP9bED8yelio1frFCF9Ib2NAnSeKsB82LFlA12L5ONOGe/B1vaDfcDE+idz6ixSvReeIKeRMLdDlNtbSZv/GYlAN+VBtBgfvwaUYk2eBhcncsusgC6ZaGNcAD3kgIh3eSzAxNS9jMcuzwEx8evlGOQCfmc1kn+TChRNeLHteOomr+7YMr0lscuyD2QEGLUG7NYl9RBXxYdFCcDB |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.7" | |
services: | |
sync: | |
image: 677024980315.dkr.ecr.ap-southeast-1.amazonaws.com/mb-api | |
container_name: mb-sync | |
restart: unless-stopped | |
ports: | |
- "19383:9383" | |
environment: | |
ROLE: SyncServer | |
TZ: Asia/Shanghai | |
SyncRedis: redis | |
redis: | |
image: redis | |
container_name: mb-sync-redis | |
restart: unless-stopped | |
volumes: | |
- redis_data:/data | |
ports: | |
- "16380:6379" | |
volumes: | |
assets: | |
redis_data: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment