19 lines
360 B
YAML
19 lines
360 B
YAML
services:
|
|
u22:
|
|
# command: command
|
|
container_name:
|
|
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
|
|
|