Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
cdrage committed Jun 23, 2024
1 parent f6c0517 commit d7ea4fa
Show file tree
Hide file tree
Showing 25 changed files with 48 additions and 1,028 deletions.
52 changes: 16 additions & 36 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ Below is a general overview (with instructions) on each Docker container I use.
- [bootc-k3s-node-amd64](#bootc-k3s-node-amd64)
- [bootc-nvidia-base-fedora](#bootc-nvidia-base-fedora)
- [cat](#cat)
- [centos7-systemd](#centos7-systemd)
- [ddns](#ddns)
- [gameserver](#gameserver)
- [hello](#hello)
Expand All @@ -45,7 +44,6 @@ Below is a general overview (with instructions) on each Docker container I use.
- [jrl](#jrl)
- [palworld](#palworld)
- [rickroll](#rickroll)
- [weechat](#weechat)

## [aviation-checklist](/aviation-checklist/Containerfile)

Expand Down Expand Up @@ -218,13 +216,9 @@ Below is a general overview (with instructions) on each Docker container I use.
podman run -d \
-p 8080:8080 \
--name cat \
cdrage/cat
ghcr.io/cdrage/cat
```

## [centos7-systemd](/centos7-systemd/Containerfile)

CentOS 7 Systemd base file. Here be dragons.

## [ddns](/ddns/Containerfile)

**Description:**
Expand All @@ -241,7 +235,7 @@ Below is a general overview (with instructions) on each Docker container I use.
--restart always \
-e DODDNS_TOKEN=your_api_key \
-e DODDNS_DOMAIN=your.domain.com \
cdrage/ddns
ghcr.io/cdrage/ddns
```

## [gameserver](/gameserver/Containerfile)
Expand All @@ -259,6 +253,7 @@ Below is a general overview (with instructions) on each Docker container I use.
podman run -d \
--name gameserver \
-p 3000:3000
ghcr.io/cdrage/gameserver
```

## [hello](/hello/Containerfile)
Expand All @@ -276,7 +271,7 @@ Below is a general overview (with instructions) on each Docker container I use.
podman run -d \
-p 8080:8080 \
--name helloworld \
cdrage/hello
ghcr.io/cdrage/hello
```

## [helloworld](/helloworld/Containerfile)
Expand All @@ -291,14 +286,22 @@ Below is a general overview (with instructions) on each Docker container I use.
podman run -d \
-p 8080:8080 \
--name helloworld \
cdrage/hello
ghcr.io/cdrage/hello
```

## [hugo](/hugo/Containerfile)

**Description:**
My Hugo file for hosting my personal wiki / journal / etc.

**Running:**
podman run -d \
-p 1313:1313 \
--name hugo \
-v /path/to/hugo:/src \
-v /path/to/hugo/public:/dest \
ghcr.io/cdrage/hugo

## [index](/index/Containerfile)

**Description:**
Expand All @@ -311,7 +314,7 @@ Below is a general overview (with instructions) on each Docker container I use.
podman run -d \
-p 8080:8080 \
--name index \
cdrage/index
ghcr.io/cdrage/index
```

## [jrl](/jrl/Containerfile)
Expand Down Expand Up @@ -344,7 +347,7 @@ Below is a general overview (with instructions) on each Docker container I use.
podman run -it --rm \
-v ~/txt.enc:/tmp/txt.enc \
-v /etc/localtime:/etc/localtime:ro \
cdrage/jrl
ghcr.io/cdrage/jrl
```

This will ask for your password, decrypt it to a tmp folder and open it in vim.
Expand Down Expand Up @@ -395,29 +398,6 @@ Below is a general overview (with instructions) on each Docker container I use.
podman run -d \
-p 8080:8080 \
--name rickroll \
cdrage/rickroll
```

## [weechat](/weechat/Containerfile)

**Description:**

Weechat IRC!

recommended to daemonize it and run in background for collection of logs, etc while idle, simply attach to container. ctrl+p ctrl+q to quit

port 40900 is used for weechat relay (if you decide to use it)

run then `docker attach weechat`

**Running:**

```sh
podman run -it -d \
-e TERM=xterm-256color \
-v /etc/localtime:/etc/localtime:ro \
--name weechat \
-p 40900:40900 \
cdrage/weechat
ghcr.io/cdrage/rickroll
```

2 changes: 1 addition & 1 deletion cat/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# podman run -d \
# -p 8080:8080 \
# --name cat \
# cdrage/cat
# ghcr.io/cdrage/cat
# ```

FROM nginxinc/nginx-unprivileged:1.26.0-alpine
Expand Down
2 changes: 1 addition & 1 deletion cat/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
podman run -d \
-p 8080:8080 \
--name cat \
cdrage/cat
ghcr.io/cdrage/cat
```
14 changes: 0 additions & 14 deletions centos7-systemd/Containerfile

This file was deleted.

1 change: 0 additions & 1 deletion centos7-systemd/README.md

This file was deleted.

2 changes: 1 addition & 1 deletion ddns/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# --restart always \
# -e DODDNS_TOKEN=your_api_key \
# -e DODDNS_DOMAIN=your.domain.com \
# cdrage/ddns
# ghcr.io/cdrage/ddns
# ```

FROM golang:1.11.2-stretch AS builder
Expand Down
2 changes: 1 addition & 1 deletion ddns/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
--restart always \
-e DODDNS_TOKEN=your_api_key \
-e DODDNS_DOMAIN=your.domain.com \
cdrage/ddns
ghcr.io/cdrage/ddns
```
1 change: 1 addition & 0 deletions gameserver/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
# podman run -d \
# --name gameserver \
# -p 3000:3000
# ghcr.io/cdrage/gameserver
# ```

#! Build Stage
Expand Down
1 change: 1 addition & 0 deletions gameserver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@
podman run -d \
--name gameserver \
-p 3000:3000
ghcr.io/cdrage/gameserver
```
2 changes: 1 addition & 1 deletion hello/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# podman run -d \
# -p 8080:8080 \
# --name helloworld \
# cdrage/hello
# ghcr.io/cdrage/hello
# ```

FROM golang:1.21.2
Expand Down
2 changes: 1 addition & 1 deletion hello/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
podman run -d \
-p 8080:8080 \
--name helloworld \
cdrage/hello
ghcr.io/cdrage/hello
```
2 changes: 1 addition & 1 deletion helloworld/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# podman run -d \
# -p 8080:8080 \
# --name helloworld \
# cdrage/hello
# ghcr.io/cdrage/hello
# ```

FROM debian:sid
Expand Down
2 changes: 1 addition & 1 deletion helloworld/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
podman run -d \
-p 8080:8080 \
--name helloworld \
cdrage/hello
ghcr.io/cdrage/hello
```
8 changes: 8 additions & 0 deletions hugo/Containerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# **Description:**
# My Hugo file for hosting my personal wiki / journal / etc.
#
# **Running:**
# podman run -d \
# -p 1313:1313 \
# --name hugo \
# -v /path/to/hugo:/src \
# -v /path/to/hugo/public:/dest \
# ghcr.io/cdrage/hugo

FROM golang
RUN go install -mod=mod --tags extended github.com/gohugoio/hugo
Expand Down
8 changes: 8 additions & 0 deletions hugo/README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
**Description:**
My Hugo file for hosting my personal wiki / journal / etc.

**Running:**
podman run -d \
-p 1313:1313 \
--name hugo \
-v /path/to/hugo:/src \
-v /path/to/hugo/public:/dest \
ghcr.io/cdrage/hugo
2 changes: 1 addition & 1 deletion index/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# podman run -d \
# -p 8080:8080 \
# --name index \
# cdrage/index
# ghcr.io/cdrage/index
# ```

FROM debian:sid
Expand Down
2 changes: 1 addition & 1 deletion index/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
podman run -d \
-p 8080:8080 \
--name index \
cdrage/index
ghcr.io/cdrage/index
```
2 changes: 1 addition & 1 deletion jrl/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# podman run -it --rm \
# -v ~/txt.enc:/tmp/txt.enc \
# -v /etc/localtime:/etc/localtime:ro \
# cdrage/jrl
# ghcr.io/cdrage/jrl
# ```
#
# This will ask for your password, decrypt it to a tmp folder and open it in vim.
Expand Down
2 changes: 1 addition & 1 deletion jrl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
podman run -it --rm \
-v ~/txt.enc:/tmp/txt.enc \
-v /etc/localtime:/etc/localtime:ro \
cdrage/jrl
ghcr.io/cdrage/jrl
```

This will ask for your password, decrypt it to a tmp folder and open it in vim.
Expand Down
2 changes: 1 addition & 1 deletion rickroll/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# podman run -d \
# -p 8080:8080 \
# --name rickroll \
# cdrage/rickroll
# ghcr.io/cdrage/rickroll
# ```

FROM nginxinc/nginx-unprivileged:1.26.0-alpine
Expand Down
2 changes: 1 addition & 1 deletion rickroll/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
podman run -d \
-p 8080:8080 \
--name rickroll \
cdrage/rickroll
ghcr.io/cdrage/rickroll
```
47 changes: 0 additions & 47 deletions weechat/Containerfile

This file was deleted.

20 changes: 0 additions & 20 deletions weechat/README.md

This file was deleted.

Loading

0 comments on commit d7ea4fa

Please sign in to comment.