mirror of
https://github.com/vmorganp/Lazytainer.git
synced 2026-01-03 11:24:52 +01:00
22 lines
392 B
YAML
22 lines
392 B
YAML
version: "3"
|
|
services:
|
|
whoami:
|
|
container_name: whoami
|
|
build: .
|
|
# image: sandman
|
|
environment:
|
|
- PORT=81
|
|
ports:
|
|
- 81:81
|
|
# command: tail -F asdf
|
|
command: /bin/sh /get_stats.sh
|
|
|
|
whoami2:
|
|
container_name: whoami2
|
|
image: containous/whoami
|
|
command: --port 81
|
|
network_mode: service:whoami
|
|
depends_on:
|
|
- whoami
|
|
# ports:
|
|
# - 80:80 |