31 lines
927 B
YAML
31 lines
927 B
YAML
---
|
|
weatherfeeder:
|
|
|
|
# Define the name of this container.
|
|
name: "weatherfeeder"
|
|
|
|
# Define the docker image to be used for this container.
|
|
image: "{{ feedstack_weatherfeeder_container_image }}:{{ feedstack_weatherfeeder_container_tag }}"
|
|
|
|
# Define the user that the container should be run as.
|
|
user: "{{ docker_user_id }}:{{ docker_group_id }}"
|
|
|
|
# Define the path where application data for this container will be stored.
|
|
appdata_directory: "{{ docker_appdata_directory }}/weatherfeeder"
|
|
|
|
# Define the volumes that should be mounted into the container.
|
|
volumes:
|
|
- "{{ docker_appdata_directory }}/weatherfeeder/config.yml:/weatherfeeder/config.yml:ro"
|
|
|
|
# Define the ports that should be opened to the outside world.
|
|
#ports: []
|
|
|
|
# Define the dependencies for this container.
|
|
dependencies:
|
|
- nats
|
|
|
|
# Define environment variables to be passed to the container.
|
|
#environment_variables: []
|
|
|
|
...
|