Created
June 25, 2017 07:07
-
-
Save shatil/0d08d889bde981a899e9ddab189909e6 to your computer and use it in GitHub Desktop.
Generate docker-compose.yml `services` entries dynamically with Python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
from __future__ import print_function | |
try: | |
from ruamel import yaml | |
except ImportError: | |
import yaml | |
# Map a Docker Compose "service" name to its image. | |
SERVICES = { | |
'client': 'ubuntu:14.04', | |
'8u121-jre-alpine': 'openjdk:8u121-jre-alpine', | |
'8u121-jre': 'openjdk:8u121-jre', | |
} | |
# docker-compose.yml skeleton to fill out using "service" entries above. | |
COMPOSITION = {'services': {}, 'version': '3'} | |
def servicize(name, image): | |
'''Create a docker-compose.yml service-section entry. | |
Params | |
====== | |
name : str | |
Name of the service. | |
image : str | |
Docker image to use (what your FROM line would contain). | |
Returns | |
======= | |
dict describing the service. A name starting with 'client' is special. | |
''' | |
entry = {'command': ['/entrypoint.sh'], | |
'image': image, | |
'volumes': ['./entrypoint.sh:/entrypoint.sh:ro']} | |
if not name.startswith('client'): | |
entry['ports'] = ['9000', '9443'] | |
entry['healthcheck'] = { | |
'test': 'curl --fail --insecure https://localhost:9443/'} | |
entry['volumes'].append('./svc:/svc:ro') | |
return entry | |
if __name__ == '__main__': | |
for name, image in SERVICES.items(): | |
COMPOSITION['services'][name] = servicize(name, image) | |
print(yaml.dump(COMPOSITION, default_flow_style=False, indent=4), end='') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment