Files
lucko-paste/docker-compose.yml

29 lines
511 B
YAML
Raw Normal View History

2021-10-27 23:37:42 +01:00
services:
2025-02-23 15:18:45 +00:00
# frontend service
2021-10-27 23:37:42 +01:00
paste:
2021-10-27 23:41:21 +01:00
image: ghcr.io/lucko/paste
2021-10-27 23:37:42 +01:00
2025-02-23 15:18:45 +00:00
# backend service
2021-10-27 23:37:42 +01:00
bytebin:
image: ghcr.io/lucko/bytebin
volumes:
- data:/opt/bytebin/content
environment:
BYTEBIN_MISC_KEYLENGTH: 5
2025-02-23 15:18:45 +00:00
# reverse proxy
2021-10-27 23:37:42 +01:00
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: {}