ubuntu/docker-compose.yaml
2024-09-02 15:22:11 +08:00

19 lines
397 B
YAML

services:
u22:
# command: command
container_name: u22
image: ubuntu:22.04
restart: always
# ports:
# - 3111-3222:3111-3222
# networks:
# - local
privileged: true
network_mode: host
volumes:
- ${ROOT_DIR}:/root
- /etc/localtime:/etc/localtime:ro
environment:
APP_ADDRESS: 0.0.0.0:3111
command: ['tail', '-f', '/dev/null']