Compare commits

..

No commits in common. "688a223be48ab3debc2612324904a3241322f01a" and "2a9731b591864f5f1495e8698f9fcb044475c6a4" have entirely different histories.

9 changed files with 100 additions and 19 deletions

30
compose-files/gitea.yml Normal file
View File

@ -0,0 +1,30 @@
version: "3"
volumes:
gitea-data:
driver: local
gitea-ssh:
driver: local
services:
server:
container_name: gitea
image: gitea/gitea:1
restart: always
volumes:
#- gitea-data:/var/lib/gitea:Z
#- gitea-config:/etc/gitea:Z
- gitea-data:/data:Z
- gitea-ssh:/data/git/.ssh:Z
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
environment:
- USER_UID=1000
- USER_GID=1000
- DISABLE_SSH=false
- START_SSH_SERVER=true
- SSH_PORT=2222
- SSH_LISTEN_PORT=2222
ports:
- "3000:3000"
- "2222:2222"

View File

@ -0,0 +1,6 @@
version: 3.8
services:
tooter:
container_name: jbmasto
build: /home/oct2pus/server-config/docker-files/jbmasto
volume:

View File

@ -0,0 +1,3 @@
services:
mega:
image:

21
compose-files/podgrab.yml Normal file
View File

@ -0,0 +1,21 @@
version: "2.1"
volumes:
podgrab-config:
driver: local
podgrab-data:
driver: local
services:
podgrab:
image: akhilrex/podgrab
container_name: podgrab
environment:
- CHECK_FREQUENCY=240
# - PASSWORD=password ## Uncomment to enable basic authentication, username = podgrab
volumes:
- podgrab-config:/config
- podgrab-data:/assets
ports:
- 8080:8080
restart: unless-stopped

14
compose-files/sharry.yml Normal file
View File

@ -0,0 +1,14 @@
version: '3.7'
volumes:
sharry-data:
driver: local
services:
restserver:
image: eikek0/sharry:latest
container_name: sharry
command: /data/sharry.conf
ports:
- "9090:9090"
volumes:
- sharry-data:/data/

9
post.fish Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/fish
for i in (ls compose-files)
cp compose-files/$i ~/.config/compose/
end
for i in (ls service-files)
cp service-files/$i ~/.config/systemd/user/
end

View File

@ -1,18 +1,20 @@
[Unit] [Unit]
Description=gitea.service Description=gitea.service
Wants=network-online.target Wants=network.target
After=NetworkManager.service network.target network-online.target After=network-online.target
RequiresMountsFor=/var/lib/containers/storage /var/run/containers/storage RequiresMountsFor=/var/lib/containers/storage /var/run/containers/storage
# %E is "the XDG_CONFIG path" # %E is "the XDG_CONFIG path"
# docker run --name gitea --restart always -v gitea-data:/data:Z -v gitea-ssh:/data/git/.ssh:Z -v /etc/timezone:/etc/timezone:ro -v /etc/localtime:/etc/localtime:ro -e USER_UID=1000 -e USER_GID=1000 -e DISABLE_SSH=false -e START_SSH_SERVER=true -e SSH_PORT=2222 -e SSH_LISTEN_PORT=2222 -p 3000:3000 -p 2222:2222 gitea/gitea:1.21
[Service] [Service]
Environment=PODMAN_SYSTEMD_UNIT=%n Environment=PODMAN_SYSTEMD_UNIT=%n
Restart=on-failure Restart=on-failure
TimeoutStopSec=70 TimeoutStopSec=70
ExecStart=/usr/bin/podman run -d --name gitea --restart always -v gitea-data:/data:Z -v gitea-ssh:/data/git/.ssh:Z -v /etc/timezone:/etc/timezone:ro -v /etc/localtime:/etc/localtime:ro -e USER_UID=1000 -e USER_GID=1000 -e DISABLE_SSH=false -e START_SSH_SERVER=true -e SSH_PORT=2222 -e SSH_LISTEN_PORT=2222 -p 3000:3000 -p 2222:2222 gitea/gitea:1.21 #ExecStartPre=/bin/rm -f %t/container-gitea.pid %t/container-gitea.ctr-id
ExecStop=/usr/bin/podman stop gitea ExecStart=/usr/bin/podman-compose -f %E/compose/gitea.yml up -d
ExecStop=/usr/bin/podman-compose -f %E/compose/gitea.yml down
ExecStopPost=/usr/bin/podman rm gitea ExecStopPost=/usr/bin/podman rm gitea
#PIDFile=%t/container-gitea.pid
Type=oneshot Type=oneshot
RemainAfterExit=yes RemainAfterExit=yes

View File

@ -1,22 +1,20 @@
[Unit] [Unit]
Description=podgrab.service Description=podgrab.service
Wants=network-online.target Wants=network.target
After=NetworkManager.service network.target network-online.target After=network-online.target
RequiresMountsFor=/var/lib/containers/storage /var/run/containers/storage RequiresMountsFor=/var/lib/containers/storage /var/run/containers/storage
# %E is "the XDG_CONFIG path" # %E is "the XDG_CONFIG path"
#docker run --name podgrab -e CHECK_FREQUENCY=240 -v podgrab-config:/config -v podgrab-data:/assets -p 8080:8080 --restart unless-stopped akhilrex/podgrab
[Service] [Service]
Environment=PODMAN_SYSTEMD_UNIT=%n Environment=PODMAN_SYSTEMD_UNIT=%n
Restart=on-failure Restart=on-failure
TimeoutStopSec=70 TimeoutStopSec=70
ExecStart=/usr/bin/podman run -d --name=podgrab -e CHECK_FREQUENCY=240 -v podgrab-config:/config -v podgrab-data:/assets -p 8080:8080 --restart always akhilrex/podgrab ExecStart=/usr/bin/podman-compose -f %E/compose/podgrab.yml up -d
ExecStop=/usr/bin/podman stop podgrab ExecStop=/usr/bin/podman-compose -f %E/compose/podgrab.yml down
ExecStopPost=/usr/bin/podman rm podgrab ExecStopPost=/usr/bin/podman rm podgrab
Type=oneshot Type=oneshot
RemainAfterExit=yes RemainAfterExit=yes
[Install] [Install]
WantedBy=default.target WantedBy=multi-user.target default.target

View File

@ -1,22 +1,20 @@
[Unit] [Unit]
Description=sharry.service Description=sharry.service
Wants=network-online.target Wants=network.target
After=NetworkManager.service network.target network-online.target After=network-online.target
RequiresMountsFor=/var/lib/containers/storage /var/run/containers/storage RequiresMountsFor=/var/lib/containers/storage /var/run/containers/storage
# %E is "the XDG_CONFIG path" # %E is "the XDG_CONFIG path"
# docker run --name sharry -p 9090:9090 -v sharry-data:/data/ eikek0/sharry:latest /data/sharry.conf
[Service] [Service]
Environment=PODMAN_SYSTEMD_UNIT=%n Environment=PODMAN_SYSTEMD_UNIT=%n
Restart=on-failure Restart=on-failure
TimeoutStopSec=70 TimeoutStopSec=70
ExecStart=/usr/bin/podman run -d --name=sharry -p 9090:9090 -v sharry-data:/data eikek0/sharry:latest /data/sharry.conf ExecStart=/usr/bin/podman-compose -f %E/compose/sharry.yml up -d
ExecStop=/usr/bin/podman stop sharry ExecStop=/usr/bin/podman-compose -f %E/compose/sharry.yml down
ExecStopPost=/usr/bin/podman rm sharry ExecStopPost=/usr/bin/podman rm sharry
Type=oneshot Type=oneshot
RemainAfterExit=yes RemainAfterExit=yes
[Install] [Install]
WantedBy=default.target WantedBy=multi-user.target default.target