mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-06-27 16:57:05 +00:00
22 lines
392 B
YAML
22 lines
392 B
YAML
# https://hub.docker.com/r/traefik/whoami
|
|
|
|
# Tiny Go webserver that prints OS information and HTTP request to output
|
|
|
|
name: whoami
|
|
services:
|
|
whoami-test:
|
|
image: traefik/whoami
|
|
container_name: whoami
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
environment:
|
|
- TZ=Europe/Vienna
|
|
ports:
|
|
- 84:80
|
|
networks:
|
|
- proxy
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|