19 lines
269 B
YAML
19 lines
269 B
YAML
|
version: '3'
|
||
|
|
||
|
services:
|
||
|
main:
|
||
|
build: .
|
||
|
restart: always
|
||
|
container_name: tubio
|
||
|
volumes:
|
||
|
- .:/app
|
||
|
- /etc/timezone:/etc/timezone:ro
|
||
|
- /etc/localtime:/etc/localtime:ro
|
||
|
|
||
|
ports:
|
||
|
- 80:80
|
||
|
|
||
|
environment:
|
||
|
- TZ=Europe/Berlin
|
||
|
|