You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- version: '3'
- services:
- postgres:
- image: postgres
- environment:
- POSTGRES_USER: 'creativeTim'
- POSTGRES_PASSWORD: 'creativeTim'
- ports:
- - 5432:5432
- volumes:
- - postgresql-data:/var/lib/postgresql/data
- redis:
- image: redis:alpine
- ports:
- - 6379:6379
- haproxy:
- image: haproxy:1.9-alpine
- ports:
- - 80:80
- volumes:
- - ./haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg
- volumes:
- postgresql-data:
|