docker-compose/template/docker-compose.yml

29 lines
443 B
YAML
Raw Permalink Normal View History

2024-05-05 14:00:09 +02:00
---
services:
2024-05-07 00:42:02 +02:00
foo:
2024-05-05 14:00:09 +02:00
image:
container_name:
2024-05-07 00:42:02 +02:00
command:
2024-05-05 14:00:09 +02:00
environment:
env_file:
2024-05-07 00:42:02 +02:00
ports:
volumes:
depends_on:
2024-05-08 23:01:18 +02:00
healthcheck:
2024-05-07 00:42:02 +02:00
restart: unless-stopped
bar:
image: bar/bar:latest
container_name: bar
2024-05-05 14:00:09 +02:00
command:
2024-05-07 00:42:02 +02:00
environment:
- TZ=Europe/Berlin
env_file:
2024-05-05 14:00:09 +02:00
ports:
2024-05-07 00:42:02 +02:00
- "127.0.0.1:443:443"
2024-05-05 14:00:09 +02:00
volumes:
2024-05-07 00:42:02 +02:00
- ./volumes/bar:/bar
2024-05-05 14:00:09 +02:00
depends_on:
2024-05-07 00:42:02 +02:00
- foo
2024-05-05 14:00:09 +02:00
restart: unless-stopped