https://github.com/davidjeddy/planetary_annihilation_linux_server
planetary annihilation linux server
https://github.com/davidjeddy/planetary_annihilation_linux_server
Last synced: 3 months ago
JSON representation
planetary annihilation linux server
- Host: GitHub
- URL: https://github.com/davidjeddy/planetary_annihilation_linux_server
- Owner: davidjeddy
- Created: 2020-01-15T03:54:14.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-15T04:00:36.000Z (over 5 years ago)
- Last Synced: 2025-01-16T11:32:59.783Z (5 months ago)
- Language: JavaScript
- Size: 30.3 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Planetary Annihilation Dedicated Server
## Sources
- [https://dev.exodusesports.com/guides/planetary-annihilation-dedicated-server-setup/](https://dev.exodusesports.com/guides/planetary-annihilation-dedicated-server-setup/)
- [https://www.hiroom2.com/2018/07/01/ubuntu-1804-vbox-guest-additions-en/](https://www.hiroom2.com/2018/07/01/ubuntu-1804-vbox-guest-additions-en/)## Setup
### Localhost
```sh
git clone https://github.com/davidjeddy/planetary_annihilation_linux_server.git
cd ./planetary_annihilation_linux_server
docker pull ubuntu:18.04
docker run -d -v $(pwd):/planetary_annihilation_linux_server -p 20545:20545 --rm --name u18_04 ubuntu:18.04 tail -f /dev/null
docker ps
docker exec -it u18_04 bash
cd /planetary_annihilation_linux_server
./install.sh
# enter PA username and password when prompted
```### Remote Server
```sh
git clone https://github.com/davidjeddy/planetary_annihilation_linux_server.git
cd ./planetary_annihilation_linux_server
./install.sh
# enter PA username and password when prompted
```Finally, ensure inbound port `20545` is accessible via remote clients.
Enjoy.
## Contributors
- [David J Eddy](mailto:[email protected])
- Exodus E-Sports
- Hi Room 2