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.
 
 
 
 
 

27 lines
389 B

version: "2"
services:
workstand:
networks:
- default
image: bcbc/workstand
links:
- redis
- db
redis:
networks:
- default
image: redis:latest
db:
networks:
- default
image: postgres:latest
volumes:
- pgdata:/var/lib/postgresql/data/
volumes:
pgdata:
external: false
networks:
default:
driver: bridge