This commit is contained in:
Luck
2021-10-27 23:37:42 +01:00
parent f2c46495b0
commit c6824094c3
9 changed files with 163 additions and 6 deletions

26
docker-compose.yml Normal file
View File

@@ -0,0 +1,26 @@
version: '3.8'
services:
paste:
image: paste
bytebin:
image: ghcr.io/lucko/bytebin
volumes:
- data:/opt/bytebin/content
environment:
BYTEBIN_MISC_KEYLENGTH: 5
nginx:
image: nginx:alpine
command: ['nginx', '-g', 'daemon off;']
depends_on:
- paste
- bytebin
ports:
- 8080:80
volumes:
- ./docker/reverseproxy-nginx.conf:/etc/nginx/conf.d/default.conf:ro
volumes:
data: {}