All checks were successful
Production Build & Deploy / build-and-deploy (push) Successful in 20s
16 lines
302 B
YAML
16 lines
302 B
YAML
services:
|
|
website:
|
|
build: .
|
|
image: gitea.hephex.de/daniel/websitedummy:latest
|
|
container_name: websitedummy_app
|
|
restart: always
|
|
ports:
|
|
- "8080:4321"
|
|
environment:
|
|
- HOST=0.0.0.0
|
|
- PORT=4321
|
|
- DATA_DIR=/app/data
|
|
volumes:
|
|
- ./app/data:/app/data
|
|
|