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-dev.yml
Ada 9155206b5c
All checks were successful
ci/woodpecker/push/lint Pipeline was successful
add: docker support
2023-10-01 13:05:03 +02:00

14 lines
295 B
YAML

services:
paste:
build: .
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' ]