From 5340121d37931ebf40731a4f00a69e762b2f8a65 Mon Sep 17 00:00:00 2001 From: EmilyxFox <48589793+EmilyxFox@users.noreply.github.com> Date: Fri, 6 Sep 2024 01:39:57 +0200 Subject: [PATCH] Simple Voice Chat examples (#3057) --- .../simple-voice-chat/fabric-compose.yaml | 21 +++++++++++++++++++ .../simple-voice-chat/neoforge-compose.yaml | 21 +++++++++++++++++++ examples/simple-voice-chat/paper-compose.yaml | 21 +++++++++++++++++++ 3 files changed, 63 insertions(+) create mode 100644 examples/simple-voice-chat/fabric-compose.yaml create mode 100644 examples/simple-voice-chat/neoforge-compose.yaml create mode 100644 examples/simple-voice-chat/paper-compose.yaml diff --git a/examples/simple-voice-chat/fabric-compose.yaml b/examples/simple-voice-chat/fabric-compose.yaml new file mode 100644 index 00000000..90cb78ea --- /dev/null +++ b/examples/simple-voice-chat/fabric-compose.yaml @@ -0,0 +1,21 @@ +services: + mc: + image: itzg/minecraft-server + tty: true + stdin_open: true + ports: + # Game port + - "25565:25565/tcp" + # Voice chat port + - "24454:24454/udp" + environment: + EULA: "TRUE" + TYPE: "FABRIC" + VERSION: "1.21.1" + # This will select the latest version of simple voice chat for 1.21.1. + # You can specify a version by appending :versionID (e.g. simple-voice-chat:anabvqRL) + MODRINTH_PROJECTS: "simple-voice-chat" + MEMORY: 8G + volumes: + # attach the relative directory 'data' to the container's /data path + - ./data:/data \ No newline at end of file diff --git a/examples/simple-voice-chat/neoforge-compose.yaml b/examples/simple-voice-chat/neoforge-compose.yaml new file mode 100644 index 00000000..97edca10 --- /dev/null +++ b/examples/simple-voice-chat/neoforge-compose.yaml @@ -0,0 +1,21 @@ +services: + mc: + image: itzg/minecraft-server + tty: true + stdin_open: true + ports: + # Game port + - "25565:25565/tcp" + # Voice chat port + - "24454:24454/udp" + environment: + EULA: "TRUE" + TYPE: "NEOFORGE" + VERSION: "1.21.1" + # This will select the latest version of simple voice chat for 1.21.1. + # You can specify a version by appending :versionID (e.g. simple-voice-chat:anabvqRL) + MODRINTH_PROJECTS: "simple-voice-chat" + MEMORY: 8G + volumes: + # attach the relative directory 'data' to the container's /data path + - ./data:/data \ No newline at end of file diff --git a/examples/simple-voice-chat/paper-compose.yaml b/examples/simple-voice-chat/paper-compose.yaml new file mode 100644 index 00000000..88fbe05c --- /dev/null +++ b/examples/simple-voice-chat/paper-compose.yaml @@ -0,0 +1,21 @@ +services: + mc: + image: itzg/minecraft-server + tty: true + stdin_open: true + ports: + # Game port + - "25565:25565/tcp" + # Voice chat port + - "24454:24454/udp" + environment: + EULA: "TRUE" + TYPE: "PAPER" + VERSION: "1.21.1" + # This will select the latest version of simple voice chat for 1.21.1. + # You can specify a version by appending :versionID (e.g. simple-voice-chat:anabvqRL) + MODRINTH_PROJECTS: "simple-voice-chat" + MEMORY: 8G + volumes: + # attach the relative directory 'data' to the container's /data path + - ./data:/data \ No newline at end of file