You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
677 B
31 lines
677 B
version: '3'
|
|
services:
|
|
www:
|
|
build:
|
|
context: ./
|
|
dockerfile: ./Dockerfile
|
|
tty: true
|
|
ports:
|
|
- 0.0.0.0:8282:22
|
|
- 8280:80
|
|
- 8281:443
|
|
- 8283:10000
|
|
|
|
# Fallback if systemd is not working
|
|
# command: '/bin/bash -c "trap : TERM INT; sleep infinity & wait"'
|
|
# To debug systemd
|
|
# command: "/sbin/init --log-target=console --log-level=debug --crash-shell"
|
|
# Production command
|
|
command: "/sbin/init --log-target=console"
|
|
environment:
|
|
# container: docker
|
|
container: podman
|
|
# volumes:
|
|
# - /sys/fs/cgroup:/sys/fs/cgroup
|
|
# tmpfs:
|
|
# - /tmp
|
|
# - /var/run
|
|
# - /var/cache
|
|
|
|
|
|
|
|
|