├── .github ├── release-drafter.yml └── workflows │ ├── docker-image.yml │ ├── docker-publish.yml │ └── release-drafter.yml ├── .gitignore ├── Dockerfile ├── README.md ├── install.sh ├── scripts ├── check_space.sh ├── check_startMode.sh ├── crontab │ ├── backup.sh │ └── monitor.sh ├── first_install.sh ├── server_alerts.sh ├── server_backup.sh ├── server_start.sh └── server_update.sh └── user.sh /.github/release-drafter.yml: -------------------------------------------------------------------------------- 1 | template: | 2 | ## What’s Changed 3 | 4 | $CHANGES 5 | -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinanrra/Docker-Satisfactory/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinanrra/Docker-Satisfactory/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinanrra/Docker-Satisfactory/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | info/ -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinanrra/Docker-Satisfactory/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinanrra/Docker-Satisfactory/HEAD/README.md -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinanrra/Docker-Satisfactory/HEAD/install.sh -------------------------------------------------------------------------------- /scripts/check_space.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinanrra/Docker-Satisfactory/HEAD/scripts/check_space.sh -------------------------------------------------------------------------------- /scripts/check_startMode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinanrra/Docker-Satisfactory/HEAD/scripts/check_startMode.sh -------------------------------------------------------------------------------- /scripts/crontab/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinanrra/Docker-Satisfactory/HEAD/scripts/crontab/backup.sh -------------------------------------------------------------------------------- /scripts/crontab/monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinanrra/Docker-Satisfactory/HEAD/scripts/crontab/monitor.sh -------------------------------------------------------------------------------- /scripts/first_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinanrra/Docker-Satisfactory/HEAD/scripts/first_install.sh -------------------------------------------------------------------------------- /scripts/server_alerts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinanrra/Docker-Satisfactory/HEAD/scripts/server_alerts.sh -------------------------------------------------------------------------------- /scripts/server_backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinanrra/Docker-Satisfactory/HEAD/scripts/server_backup.sh -------------------------------------------------------------------------------- /scripts/server_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinanrra/Docker-Satisfactory/HEAD/scripts/server_start.sh -------------------------------------------------------------------------------- /scripts/server_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinanrra/Docker-Satisfactory/HEAD/scripts/server_update.sh -------------------------------------------------------------------------------- /user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinanrra/Docker-Satisfactory/HEAD/user.sh --------------------------------------------------------------------------------