marmelab / gaudi

Gaudi allows to share multi-component applications, based on Docker, Go, and YAML.
http://gaudi.io/
MIT License
563 stars 28 forks source link

Add Postgresql support #84

Open thromera opened 10 years ago

thromera commented 10 years ago

Postgresql is a really common setup choice for Database, it would be cool to have it in the builder :)

manuquentin commented 10 years ago

Good idea. Can you make a pull request to integrate it ?

You can also use container from the index with the index like :

db:
        type: index
        image: paintedfox/postgresql
        volumes:
            /data/postgresql/: /data
        environments:
            USER: docker
            PASS: docker
            DB: myDB
        ports:
            5432: 5432

Thanks

thromera commented 10 years ago

I unfortunately don 't have much time. Will look into it later.