mirror of
https://github.com/byReqz/docker-composes.git
synced 2023-10-15 09:17:02 +00:00
Add files via upload
This commit is contained in:
parent
d480057b12
commit
8d318c261d
14
archivebox.yml
Normal file
14
archivebox.yml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
version: '3.7'
|
||||||
|
services:
|
||||||
|
archivebox:
|
||||||
|
image: nikisweeting/archivebox:latest
|
||||||
|
command: server 0.0.0.0:8867
|
||||||
|
stdin_open: true
|
||||||
|
tty: true
|
||||||
|
ports:
|
||||||
|
- 8867:8867
|
||||||
|
environment:
|
||||||
|
- USE_COLOR=True
|
||||||
|
- SHOW_PROGRESS=True
|
||||||
|
volumes:
|
||||||
|
- ./:/data
|
10
dashmachine.yml
Normal file
10
dashmachine.yml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
version: '3.3'
|
||||||
|
services:
|
||||||
|
dashmachine:
|
||||||
|
image: rmountjoy/dashmachine
|
||||||
|
container_name: dashmachine
|
||||||
|
volumes:
|
||||||
|
- ./:/dashmachine/dashmachine/user_data
|
||||||
|
ports:
|
||||||
|
- 5000:5000
|
||||||
|
restart: unless-stopped
|
7
endlessh.yml
Normal file
7
endlessh.yml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
version: "3.4"
|
||||||
|
services:
|
||||||
|
endlessh:
|
||||||
|
image: harshavardhanj/endlessh:latest
|
||||||
|
ports:
|
||||||
|
- "21:2222"
|
||||||
|
restart: always
|
13
hastebin.yml
Normal file
13
hastebin.yml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
version: '2.3'
|
||||||
|
services:
|
||||||
|
hastebin:
|
||||||
|
container_name: hastebin
|
||||||
|
image: angristan/hastebin:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- ./data:/app/data
|
||||||
|
ports:
|
||||||
|
- "7777:7777"
|
||||||
|
environment:
|
||||||
|
- UID=4242
|
||||||
|
- GID=4242
|
11
httpd.yml
Normal file
11
httpd.yml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
version: '2.3'
|
||||||
|
services:
|
||||||
|
byreqz.de:
|
||||||
|
container_name: httpd1
|
||||||
|
image: httpd
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- ./httpd.conf:/usr/local/apache2/conf/httpd.conf
|
||||||
|
- ./:/usr/local/apache2/htdocs
|
||||||
|
ports:
|
||||||
|
- "85:80"
|
28
minecraft.yml
Normal file
28
minecraft.yml
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
version: "3"
|
||||||
|
services:
|
||||||
|
minecraft:
|
||||||
|
image: itzg/minecraft-server
|
||||||
|
ports:
|
||||||
|
- "25560:25565"
|
||||||
|
volumes:
|
||||||
|
- "./:/data"
|
||||||
|
environment:
|
||||||
|
JVM_OPTS: "-XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200 -XX:+UnlockExperimentalVMOptions -XX:+DisableExplicitGC -XX:+AlwaysPreTouch -XX:G1NewSizePercent=30 -XX:G1MaxNewSizePercent=40 -XX:G1HeapRegionSize=8M -XX:G1ReservePercent=20 -XX:G1HeapWastePercent=5 -XX:G1MixedGCCountTarget=4 -XX:InitiatingHeapOccupancyPercent=15 -XX:G1MixedGCLiveThresholdPercent=90 -XX:G1RSetUpdatingPauseTimePercent=5 -XX:SurvivorRatio=32 -XX:+PerfDisableSharedMem -XX:MaxTenuringThreshold=1 -Dusing.aikars.flags=https://mcflags.emc.gs -Daikars.new.flags=true"
|
||||||
|
VERSION: "latest"
|
||||||
|
TYPE: "PAPER"
|
||||||
|
EULA: "TRUE"
|
||||||
|
ENABLE_RCON: "true"
|
||||||
|
MEMORY: "4G"
|
||||||
|
RCON_PASSWORD: "..."
|
||||||
|
RCON_PORT: 28016
|
||||||
|
# enable env variable replacement
|
||||||
|
REPLACE_ENV_VARIABLES: "TRUE"
|
||||||
|
# define an optional prefix for your env variables you want to replace
|
||||||
|
ENV_VARIABLE_PREFIX: "CFG_"
|
||||||
|
# and here are the actual variables
|
||||||
|
CFG_DB_HOST: "http://localhost:3306"
|
||||||
|
CFG_DB_NAME: "minecraft"
|
||||||
|
CFG_DB_PASSWORD_FILE: "/run/secrets/db_password"
|
||||||
|
restart: always
|
||||||
|
container_name: mc
|
||||||
|
|
11
privatebin.yml
Normal file
11
privatebin.yml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
version: '2.3'
|
||||||
|
services:
|
||||||
|
privatebin:
|
||||||
|
container_name: privatebin
|
||||||
|
image: jgeusebroek/privatebin
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- ./:/privatebin/cfg
|
||||||
|
- ./data:/privatebin/data
|
||||||
|
ports:
|
||||||
|
- "8956:80"
|
12
ssh-chat.yml
Normal file
12
ssh-chat.yml
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
version: '3.1'
|
||||||
|
services:
|
||||||
|
ssh-chat:
|
||||||
|
image: byreqz/ssh-chat:latest
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- "2022:2022"
|
||||||
|
volumes:
|
||||||
|
- ./ssh-chat-key:/ssh_key
|
||||||
|
- ./admin_keys:/admin_keys
|
||||||
|
- ./motd:/motd
|
||||||
|
container_name: ssh-chat
|
15
ssh-honeypot.yml
Normal file
15
ssh-honeypot.yml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
version: '3.1'
|
||||||
|
services:
|
||||||
|
ssh-honeypot:
|
||||||
|
image: wildwildangel/ssh-honeypotd
|
||||||
|
restart: always
|
||||||
|
network_mode: host
|
||||||
|
cap_add:
|
||||||
|
- net_admin
|
||||||
|
ports:
|
||||||
|
- 21:21
|
||||||
|
environment:
|
||||||
|
- TZ=Europe/Berlin
|
||||||
|
- ADRESS=0.0.0.0
|
||||||
|
- PORT=21
|
||||||
|
container_name: ssh-honeypot
|
27
teamspeak.yml
Normal file
27
teamspeak.yml
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
version: '3.1'
|
||||||
|
services:
|
||||||
|
teamspeak:
|
||||||
|
image: teamspeak
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- 9987:9987/udp
|
||||||
|
- 10011:10011
|
||||||
|
- 30033:30033
|
||||||
|
environment:
|
||||||
|
TS3SERVER_DB_PLUGIN: ts3db_mariadb
|
||||||
|
TS3SERVER_DB_SQLCREATEPATH: create_mariadb
|
||||||
|
TS3SERVER_DB_HOST: db
|
||||||
|
TS3SERVER_DB_USER: root
|
||||||
|
TS3SERVER_DB_PASSWORD: ...
|
||||||
|
TS3SERVER_DB_NAME: teamspeak
|
||||||
|
TS3SERVER_DB_WAITUNTILREADY: 30
|
||||||
|
TS3SERVER_LICENSE: accept
|
||||||
|
volumes:
|
||||||
|
- ./:/var/ts3server
|
||||||
|
|
||||||
|
db:
|
||||||
|
image: mariadb
|
||||||
|
restart: always
|
||||||
|
environment:
|
||||||
|
MYSQL_ROOT_PASSWORD: ...
|
||||||
|
MYSQL_DATABASE: teamspeak
|
10
thelounge.yml
Normal file
10
thelounge.yml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
version: '3.1'
|
||||||
|
services:
|
||||||
|
thelounge:
|
||||||
|
image: thelounge/thelounge
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- 6738:9000
|
||||||
|
volumes:
|
||||||
|
- ./:/var/opt/thelounge
|
||||||
|
container_name: thelounge
|
19
ttt.yml
Normal file
19
ttt.yml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
version: '3.1'
|
||||||
|
services:
|
||||||
|
gmod_ttt:
|
||||||
|
container_name: "gmod_ttt"
|
||||||
|
image: joshhsoj1902/linuxgsm-docker
|
||||||
|
environment:
|
||||||
|
- LGSM_GAMESERVERNAME=gmodserver
|
||||||
|
- LGSM_UPDATEINSTALLSKIP=UPDATE
|
||||||
|
- LGSM_DEFAULTMAP=ttt_rooftops_2016_v1
|
||||||
|
- LGSM_GAMEMODE=terrortown
|
||||||
|
- LSGM_WSAPIKEY=...
|
||||||
|
- LGSM_WSCOLLECTIONID=843519054
|
||||||
|
- LGSM_MAXPLAYERS=32
|
||||||
|
ports:
|
||||||
|
- 27015:27015
|
||||||
|
- 27005:27005
|
||||||
|
- 27005:27005
|
||||||
|
volumes:
|
||||||
|
- ./:/home/linuxgsm/serverfiles
|
Loading…
Reference in New Issue
Block a user