diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2020-12-26 14:17:41 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2020-12-26 14:17:41 +0100 |
commit | 9e4e02fdfb5a9e038c5e09a38fa51b457164156b (patch) | |
tree | 7c3f088425b3998432e70e59fa802f613f49e374 /ansible/plays/templates | |
parent | 4083f32156c5df71cb6ea370a411e152c8a67b8b (diff) | |
download | infra-9e4e02fdfb5a9e038c5e09a38fa51b457164156b.tar.gz infra-9e4e02fdfb5a9e038c5e09a38fa51b457164156b.tar.bz2 infra-9e4e02fdfb5a9e038c5e09a38fa51b457164156b.tar.xz infra-9e4e02fdfb5a9e038c5e09a38fa51b457164156b.zip |
Replaced malabaricus.
Diffstat (limited to 'ansible/plays/templates')
-rw-r--r-- | ansible/plays/templates/malabaricus/docker-compose.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ansible/plays/templates/malabaricus/docker-compose.yml b/ansible/plays/templates/malabaricus/docker-compose.yml new file mode 100644 index 0000000..e85f147 --- /dev/null +++ b/ansible/plays/templates/malabaricus/docker-compose.yml @@ -0,0 +1,10 @@ +version: "3" +services: + pdb11: + image: postgres:11 + volumes: + - /data:/var/lib/postgresql/data + environment: + POSTGRES_PASSWORD: mysecretpassword + + |