fix some PR issues

This commit is contained in:
Rio6 2021-09-14 19:58:06 -04:00
parent f79fe6a6e0
commit 2d55c5099d
2 changed files with 6 additions and 4 deletions

View File

@ -28,10 +28,12 @@ services:
image: debian:buster image: debian:buster
commands: commands:
- .drone/auth1-setup.sh - .drone/auth1-setup.sh
- sleep infinity
- name: coffee - name: coffee
image: debian:buster image: debian:buster
commands: commands:
- .drone/coffee-setup.sh - .drone/coffee-setup.sh
- sleep infinity
trigger: trigger:
branch: branch:

View File

@ -10,7 +10,7 @@ overview of its architecture.
If you are not modifying code related to email or Mailman, then you may use If you are not modifying code related to email or Mailman, then you may use
Docker containers instead, which are much easier to work with than the VM. Docker containers instead, which are much easier to work with than the VM.
``` ```
docker-compose up -d docker-compose up -d # or without -d to run in the foreground
``` ```
This will create some containers with the bare minimum necessary for ceod to This will create some containers with the bare minimum necessary for ceod to
run, and start ceod on each of phosphoric-acid, mail, and coffee container. run, and start ceod on each of phosphoric-acid, mail, and coffee container.
@ -22,9 +22,8 @@ docker-compose logs -f
To use ceo, run the following: To use ceo, run the following:
```sh ```sh
docker-compose exec phosphoric-acid bash docker-compose exec phosphoric-acid bash
su ctdalek # optional, to run as normal user su ctdalek
kinit ctdalek # password is krb5 python -m ceo # the password for kerobos is krb5
python -m ceo
``` ```
This should bring up the TUI. This should bring up the TUI.
@ -38,6 +37,7 @@ To stop the containers, run:
```sh ```sh
docker-compose down docker-compose down
``` ```
Alternatively, if you started docker-compose in the foreground, just press Ctrl-C.
### VM ### VM
If you need the full environment running in VM, follow the guide on If you need the full environment running in VM, follow the guide on