- とりあえずpmmpで立てて繋がるところまで
- nginxでudpのリバースプロキシコンテナを立ててうまくルーティングされるかテスト
- nukkitとかminetとかどうなのよ
- なんかプラグインつくってみるか
Last active
May 12, 2019 16:19
-
-
Save unchama/7be43bfb316f2c7f73b7c95f71139196 to your computer and use it in GitHub Desktop.
bedrock editionでサーバー建てたりプラグインつくったりするのってどうするんじゃろな〜
This file contains hidden or 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.3' | |
networks: | |
nukkit-test: | |
external: false | |
services: | |
# nukkitサーバー本体のコンテナ | |
mc-nukkit: | |
image: ixilon/nukkit:latest | |
ports: | |
# ホストアドレス:19132/udp でアクセス可能とする | |
- 19132:19132/udp | |
environment: | |
- TZ=Asia/Tokyo | |
volumes: | |
- ./data:/srv/nukkit | |
networks: | |
- nukkit-test |
This file contains hidden or 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.3' | |
networks: | |
pmmp-nginx-test: | |
external: false | |
services: | |
# pmmpサーバー本体のコンテナ | |
mc-pmmp: | |
# https://hub.docker.com/r/cscheide/pocketmine-mp/ | |
image: cscheide/pocketmine-mp:latest | |
ports: | |
# ホストアドレス:19132/udp でアクセス可能とする | |
- 19132:19132/udp | |
environment: | |
- TZ=Asia/Tokyo | |
volumes: | |
- ./data:/data | |
networks: | |
- pmmp-nginx-test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment