This repository has been archived on 2023-10-10. You can view files and clone it, but cannot push or open issues or pull requests.
paste/docker-compose.yml

14 lines
320 B
YAML
Raw Normal View History

2023-10-01 13:02:23 +02:00
services:
paste:
build: git.gnous.eu/gnouseu/paste
ports:
- "5000:5000"
environment:
PASTE_REDIS_HOST: "redis"
healthcheck:
test: [ 'CMD', 'wget', '-q', '--spider', 'http://localhost/health']
redis:
image: "redis:7.0"
healthcheck:
test: [ 'CMD', 'redis-cli', 'ping' ]