-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
23 lines (23 loc) · 999 Bytes
/
docker-compose.yml
File metadata and controls
23 lines (23 loc) · 999 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
services:
tirsvad-cli:
build:
context: .
dockerfile: Dockerfile
image: tirsvad/tirsvadcli_debian13_nginx
container_name: tirsvadcli_debian13_nginx
# tty: true
# stdin_open: true
# Labels provide metadata for the image/container. These follow the OCI / Docker label conventions.
labels:
# Human friendly title for the image
org.opencontainers.image.title: "Tirsvad CLI Debian 13 Nginx"
# Short description of what this image provides
org.opencontainers.image.description: "Tirsvad CLI image based on Debian 13 with Nginx preconfigured"
# Image version
org.opencontainers.image.version: "1.1"
# License for the image contents
org.opencontainers.image.licenses: "AGPL-3.0"
# Project or repository URL
org.opencontainers.image.url: "https://github.com/Tirsvad/TirsvadCLI.Docker.Debian13.Nginx"
# Additional tags for the image (comma-separated)
org.opencontainers.image.tags: "1.1, latest"