Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mymindstorm/mc-eternal-docker
Docker container for MC.Eternal modpack
https://github.com/mymindstorm/mc-eternal-docker
Last synced: about 2 months ago
JSON representation
Docker container for MC.Eternal modpack
- Host: GitHub
- URL: https://github.com/mymindstorm/mc-eternal-docker
- Owner: mymindstorm
- Created: 2020-02-22T19:40:50.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-11-03T18:28:22.000Z (about 1 year ago)
- Last Synced: 2023-11-03T19:29:48.381Z (about 1 year ago)
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/mymindstorm/mc-eternal
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mc-eternal-docker
Docker container for MC.Eternal modpack# Usage
Run the container and publish port 25565. You can mount `/srv/minecraft` to a volume if you want to edit the eula or config.
### Example
```bash
# Create volume for Minecraft files
$ docker volume create mc-eternal-vol
mc-eternal-vol
# Create container and mount Minecraft data to volume
$ docker run -v mc-eternal-vol:/srv/minecraft -p 25565:25565 -i -d mymindstorm/mc-eternal:1.3.6
6748a532e6e3241d22f25e55140c784be0b0a3f81e123b79cfaec5c4d502b245
# Agree to ELUA and change config
$ cd /var/lib/docker/volumes/mc-eternal-vol/_data
$ vi eula.txt
# Start the container again
$ docker start 6748a
# Connect to console
$ docker attach 6748a
```