Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sincorchetes/zeus
https://github.com/sincorchetes/zeus
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sincorchetes/zeus
- Owner: sincorchetes
- License: gpl-2.0
- Created: 2022-12-06T05:27:50.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-06T05:35:29.000Z (about 2 years ago)
- Last Synced: 2023-05-13T21:41:34.955Z (over 1 year ago)
- Language: Dockerfile
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Zeus will be a cloud and container manager.
# Requirements
- Installed Docker with Docker compose plugin
- Fedora 36 or later### Docker - Fedora
Install Docker with the following steps:
```
sudo dnf -y install dnf-plugins-core
sudo dnf config-manager \
--add-repo \
https://download.docker.com/linux/fedora/docker-ce.repo
sudo dnf install -y docker-ce docker-ce-cli containerd.io docker-compose-plugin
sudo systemctl enable --now docker.service
```Setting up your user to use Docker daemon:
```
sudo gpasswd -a $USER docker
```Re-login your session or use the new privileges:
```
newgrp docker
```### First steps
Build first the project image:
```
docker compose build
```Let's start the project in the foreground (see the logs):
```
docker compose up
```
Or run over the background:
```
docker compose up -d
```__NOTE:__ It does not need recreate the container each you want to change the code.